corrade-nucleus-nucleons – Blame information for rev 20

Subversion Repositories:
Rev:
Rev Author Line No. Line
20 office 1 /**
2 * @license Highmaps JS v5.0.12 (2017-05-24)
3 *
4 * (c) 2011-2016 Torstein Honsi
5 *
6 * License: www.highcharts.com/license
7 */
8 'use strict';
9 (function(root, factory) {
10 if (typeof module === 'object' && module.exports) {
11 module.exports = root.document ?
12 factory(root) :
13 factory;
14 } else {
15 root.Highcharts = factory(root);
16 }
17 }(typeof window !== 'undefined' ? window : this, function(win) {
18 var Highcharts = (function() {
19 /**
20 * (c) 2010-2017 Torstein Honsi
21 *
22 * License: www.highcharts.com/license
23 */
24 /* global window */
25 var win = window,
26 doc = win.document;
27  
28 var SVG_NS = 'http://www.w3.org/2000/svg',
29 userAgent = (win.navigator && win.navigator.userAgent) || '',
30 svg = doc && doc.createElementNS && !!doc.createElementNS(SVG_NS, 'svg').createSVGRect,
31 isMS = /(edge|msie|trident)/i.test(userAgent) && !window.opera,
32 vml = !svg,
33 isFirefox = /Firefox/.test(userAgent),
34 hasBidiBug = isFirefox && parseInt(userAgent.split('Firefox/')[1], 10) < 4; // issue #38
35  
36 var Highcharts = win.Highcharts ? win.Highcharts.error(16, true) : {
37 product: 'Highmaps',
38 version: '5.0.12',
39 deg2rad: Math.PI * 2 / 360,
40 doc: doc,
41 hasBidiBug: hasBidiBug,
42 hasTouch: doc && doc.documentElement.ontouchstart !== undefined,
43 isMS: isMS,
44 isWebKit: /AppleWebKit/.test(userAgent),
45 isFirefox: isFirefox,
46 isTouchDevice: /(Mobile|Android|Windows Phone)/.test(userAgent),
47 SVG_NS: SVG_NS,
48 chartCount: 0,
49 seriesTypes: {},
50 symbolSizes: {},
51 svg: svg,
52 vml: vml,
53 win: win,
54 marginNames: ['plotTop', 'marginRight', 'marginBottom', 'plotLeft'],
55 noop: function() {
56 return undefined;
57 },
58 /**
59 * An array containing the current chart objects in the page. A chart's
60 * position in the array is preserved throughout the page's lifetime. When
61 * a chart is destroyed, the array item becomes `undefined`.
62 * @type {Array.<Highcharts.Chart>}
63 * @memberOf Highcharts
64 */
65 charts: []
66 };
67 return Highcharts;
68 }());
69 (function(H) {
70 /**
71 * (c) 2010-2017 Torstein Honsi
72 *
73 * License: www.highcharts.com/license
74 */
75 /* eslint max-len: ["warn", 80, 4] */
76  
77 /**
78 * The Highcharts object is the placeholder for all other members, and various
79 * utility functions. The most important member of the namespace would be the
80 * chart constructor.
81 *
82 * @example
83 * var chart = Highcharts.chart('container', { ... });
84 *
85 * @namespace Highcharts
86 */
87  
88 var timers = [];
89  
90 var charts = H.charts,
91 doc = H.doc,
92 win = H.win;
93  
94 /**
95 * Provide error messages for debugging, with links to online explanation. This
96 * function can be overridden to provide custom error handling.
97 *
98 * @function #error
99 * @memberOf Highcharts
100 * @param {Number|String} code - The error code. See [errors.xml]{@link
101 * https://github.com/highcharts/highcharts/blob/master/errors/errors.xml}
102 * for available codes. If it is a string, the error message is printed
103 * directly in the console.
104 * @param {Boolean} [stop=false] - Whether to throw an error or just log a
105 * warning in the console.
106 *
107 * @sample highcharts/chart/highcharts-error/ Custom error handler
108 */
109 H.error = function(code, stop) {
110 var msg = H.isNumber(code) ?
111 'Highcharts error #' + code + ': www.highcharts.com/errors/' + code :
112 code;
113 if (stop) {
114 throw new Error(msg);
115 }
116 // else ...
117 if (win.console) {
118 console.log(msg); // eslint-disable-line no-console
119 }
120 };
121  
122 /**
123 * An animator object used internally. One instance applies to one property
124 * (attribute or style prop) on one element. Animation is always initiated
125 * through {@link SVGElement#animate}.
126 *
127 * @constructor Fx
128 * @memberOf Highcharts
129 * @param {HTMLDOMElement|SVGElement} elem - The element to animate.
130 * @param {AnimationOptions} options - Animation options.
131 * @param {string} prop - The single attribute or CSS property to animate.
132 * @private
133 *
134 * @example
135 * var rect = renderer.rect(0, 0, 10, 10).add();
136 * rect.animate({ width: 100 });
137 */
138 H.Fx = function(elem, options, prop) {
139 this.options = options;
140 this.elem = elem;
141 this.prop = prop;
142 };
143 H.Fx.prototype = {
144  
145 /**
146 * Set the current step of a path definition on SVGElement.
147 *
148 * @function #dSetter
149 * @memberOf Highcharts.Fx
150 */
151 dSetter: function() {
152 var start = this.paths[0],
153 end = this.paths[1],
154 ret = [],
155 now = this.now,
156 i = start.length,
157 startVal;
158  
159 // Land on the final path without adjustment points appended in the ends
160 if (now === 1) {
161 ret = this.toD;
162  
163 } else if (i === end.length && now < 1) {
164 while (i--) {
165 startVal = parseFloat(start[i]);
166 ret[i] =
167 isNaN(startVal) ? // a letter instruction like M or L
168 start[i] :
169 now * (parseFloat(end[i] - startVal)) + startVal;
170  
171 }
172 // If animation is finished or length not matching, land on right value
173 } else {
174 ret = end;
175 }
176 this.elem.attr('d', ret, null, true);
177 },
178  
179 /**
180 * Update the element with the current animation step.
181 *
182 * @function #update
183 * @memberOf Highcharts.Fx
184 */
185 update: function() {
186 var elem = this.elem,
187 prop = this.prop, // if destroyed, it is null
188 now = this.now,
189 step = this.options.step;
190  
191 // Animation setter defined from outside
192 if (this[prop + 'Setter']) {
193 this[prop + 'Setter']();
194  
195 // Other animations on SVGElement
196 } else if (elem.attr) {
197 if (elem.element) {
198 elem.attr(prop, now, null, true);
199 }
200  
201 // HTML styles, raw HTML content like container size
202 } else {
203 elem.style[prop] = now + this.unit;
204 }
205  
206 if (step) {
207 step.call(elem, now, this);
208 }
209  
210 },
211  
212 /**
213 * Run an animation.
214 *
215 * @function #run
216 * @memberOf Highcharts.Fx
217 * @param {Number} from - The current value, value to start from.
218 * @param {Number} to - The end value, value to land on.
219 * @param {String} [unit] - The property unit, for example `px`.
220 * @returns {void}
221 */
222 run: function(from, to, unit) {
223 var self = this,
224 timer = function(gotoEnd) {
225 return timer.stopped ? false : self.step(gotoEnd);
226 },
227 i;
228  
229 this.startTime = +new Date();
230 this.start = from;
231 this.end = to;
232 this.unit = unit;
233 this.now = this.start;
234 this.pos = 0;
235  
236 timer.elem = this.elem;
237 timer.prop = this.prop;
238  
239 if (timer() && timers.push(timer) === 1) {
240 timer.timerId = setInterval(function() {
241  
242 for (i = 0; i < timers.length; i++) {
243 if (!timers[i]()) {
244 timers.splice(i--, 1);
245 }
246 }
247  
248 if (!timers.length) {
249 clearInterval(timer.timerId);
250 }
251 }, 13);
252 }
253 },
254  
255 /**
256 * Run a single step in the animation.
257 *
258 * @function #step
259 * @memberOf Highcharts.Fx
260 * @param {Boolean} [gotoEnd] - Whether to go to the endpoint of the
261 * animation after abort.
262 * @returns {Boolean} Returns `true` if animation continues.
263 */
264 step: function(gotoEnd) {
265 var t = +new Date(),
266 ret,
267 done,
268 options = this.options,
269 elem = this.elem,
270 complete = options.complete,
271 duration = options.duration,
272 curAnim = options.curAnim;
273  
274 if (elem.attr && !elem.element) { // #2616, element is destroyed
275 ret = false;
276  
277 } else if (gotoEnd || t >= duration + this.startTime) {
278 this.now = this.end;
279 this.pos = 1;
280 this.update();
281  
282 curAnim[this.prop] = true;
283  
284 done = true;
285  
286 H.objectEach(curAnim, function(val) {
287 if (val !== true) {
288 done = false;
289 }
290 });
291  
292 if (done && complete) {
293 complete.call(elem);
294 }
295 ret = false;
296  
297 } else {
298 this.pos = options.easing((t - this.startTime) / duration);
299 this.now = this.start + ((this.end - this.start) * this.pos);
300 this.update();
301 ret = true;
302 }
303 return ret;
304 },
305  
306 /**
307 * Prepare start and end values so that the path can be animated one to one.
308 *
309 * @function #initPath
310 * @memberOf Highcharts.Fx
311 * @param {SVGElement} elem - The SVGElement item.
312 * @param {String} fromD - Starting path definition.
313 * @param {Array} toD - Ending path definition.
314 * @returns {Array} An array containing start and end paths in array form
315 * so that they can be animated in parallel.
316 */
317 initPath: function(elem, fromD, toD) {
318 fromD = fromD || '';
319 var shift,
320 startX = elem.startX,
321 endX = elem.endX,
322 bezier = fromD.indexOf('C') > -1,
323 numParams = bezier ? 7 : 3,
324 fullLength,
325 slice,
326 i,
327 start = fromD.split(' '),
328 end = toD.slice(), // copy
329 isArea = elem.isArea,
330 positionFactor = isArea ? 2 : 1,
331 reverse;
332  
333 /**
334 * In splines make moveTo and lineTo points have six parameters like
335 * bezier curves, to allow animation one-to-one.
336 */
337 function sixify(arr) {
338 var isOperator,
339 nextIsOperator;
340 i = arr.length;
341 while (i--) {
342  
343 // Fill in dummy coordinates only if the next operator comes
344 // three places behind (#5788)
345 isOperator = arr[i] === 'M' || arr[i] === 'L';
346 nextIsOperator = /[a-zA-Z]/.test(arr[i + 3]);
347 if (isOperator && nextIsOperator) {
348 arr.splice(
349 i + 1, 0,
350 arr[i + 1], arr[i + 2],
351 arr[i + 1], arr[i + 2]
352 );
353 }
354 }
355 }
356  
357 /**
358 * Insert an array at the given position of another array
359 */
360 function insertSlice(arr, subArr, index) {
361 [].splice.apply(
362 arr, [index, 0].concat(subArr)
363 );
364 }
365  
366 /**
367 * If shifting points, prepend a dummy point to the end path.
368 */
369 function prepend(arr, other) {
370 while (arr.length < fullLength) {
371  
372 < fullLength) { // Move to, line to or curve to?
373 < fullLength) { arr[0] = other[fullLength - arr.length];
374  
375 < fullLength) { // Prepend a copy of the first point
376 < fullLength) { insertSlice(arr, arr.slice(0, numParams), 0);
377  
378 < fullLength) { // For areas, the bottom path goes back again to the left, so we
379 < fullLength) { // need to append a copy of the last point.
380 < fullLength) { if (isArea) {
381 < fullLength) { insertSlice(
382 < fullLength) { arr,
383 < fullLength) { arr.slice(arr.length - numParams), arr.length
384 < fullLength) { );
385 < fullLength) { i--;
386 < fullLength) { }
387 < fullLength) { }
388 < fullLength) { arr[0] = 'M';
389 < fullLength) { }
390  
391 < fullLength) { /**
392 < fullLength) { * Copy and append last point until the length matches the end length
393 < fullLength) { */
394 < fullLength) { function append(arr, other) {
395 < fullLength) { var i = (fullLength - arr.length) / numParams;
396 < fullLength) { while (i > 0 && i--) {
397  
398 < fullLength) { // Pull out the slice that is going to be appended or inserted.
399 < fullLength) { // In a line graph, the positionFactor is 1, and the last point
400 < fullLength) { // is sliced out. In an area graph, the positionFactor is 2,
401 < fullLength) { // causing the middle two points to be sliced out, since an area
402 < fullLength) { // path starts at left, follows the upper path then turns and
403 < fullLength) { // follows the bottom back.
404 < fullLength) { slice = arr.slice().splice(
405 < fullLength) { (arr.length / positionFactor) - numParams,
406 < fullLength) { numParams * positionFactor
407 < fullLength) { );
408  
409 < fullLength) { // Move to, line to or curve to?
410 < fullLength) { slice[0] = other[fullLength - numParams - (i * numParams)];
411  
412 < fullLength) { // Disable first control point
413 < fullLength) { if (bezier) {
414 < fullLength) { slice[numParams - 6] = slice[numParams - 2];
415 < fullLength) { slice[numParams - 5] = slice[numParams - 1];
416 < fullLength) { }
417  
418 < fullLength) { // Now insert the slice, either in the middle (for areas) or at
419 < fullLength) { // the end (for lines)
420 < fullLength) { insertSlice(arr, slice, arr.length / positionFactor);
421  
422 < fullLength) { if (isArea) {
423 < fullLength) { i--;
424 < fullLength) { }
425 < fullLength) { }
426 < fullLength) { }
427  
428 < fullLength) { if (bezier) {
429 < fullLength) { sixify(start);
430 < fullLength) { sixify(end);
431 < fullLength) { }
432  
433 < fullLength) { // For sideways animation, find out how much we need to shift to get the
434 < fullLength) { // start path Xs to match the end path Xs.
435 < fullLength) { if (startX && endX) {
436 < fullLength) { for (i = 0; i < startX.length; i++) {
437 < fullLength) { // Moving left, new points coming in on right
438 < fullLength) { if (startX[i] === endX[0]) {
439 < fullLength) { shift = i;
440 < fullLength) { break;
441 < fullLength) { // Moving right
442 < fullLength) { } else if (startX[0] ===
443 < fullLength) { endX[endX.length - startX.length + i]) {
444 < fullLength) { shift = i;
445 < fullLength) { reverse = true;
446 < fullLength) { break;
447 < fullLength) { }
448 < fullLength) { }
449 < fullLength) { if (shift === undefined) {
450 < fullLength) { start = [];
451 < fullLength) { }
452 < fullLength) { }
453  
454 < fullLength) { if (start.length && H.isNumber(shift)) {
455  
456 < fullLength) { // The common target length for the start and end array, where both
457 < fullLength) { // arrays are padded in opposite ends
458 < fullLength) { fullLength = end.length + shift * positionFactor * numParams;
459  
460 < fullLength) { if (!reverse) {
461 < fullLength) { prepend(end, start);
462 < fullLength) { append(start, end);
463 < fullLength) { } else {
464 < fullLength) { prepend(start, end);
465 < fullLength) { append(end, start);
466 < fullLength) { }
467 < fullLength) { }
468  
469 < fullLength) { return [start, end];
470 < fullLength) { }
471 < fullLength) { }; // End of Fx prototype
472  
473 < fullLength) { /**
474 < fullLength) { * Handle animation of the color attributes directly.
475 < fullLength) { */
476 < fullLength) { H.Fx.prototype.fillSetter =
477 < fullLength) { H.Fx.prototype.strokeSetter = function() {
478 < fullLength) { this.elem.attr(
479 < fullLength) { this.prop,
480 < fullLength) { H.color(this.start).tweenTo(H.color(this.end), this.pos),
481 < fullLength) { null,
482 < fullLength) { true
483 < fullLength) { );
484 < fullLength) { };
485  
486  
487 < fullLength) { /**
488 < fullLength) { * Utility function to extend an object with the members of another.
489 < fullLength) { *
490 < fullLength) { * @function #extend
491 < fullLength) { * @memberOf Highcharts
492 < fullLength) { * @param {Object} a - The object to be extended.
493 < fullLength) { * @param {Object} b - The object to add to the first one.
494 < fullLength) { * @returns {Object} Object a, the original object.
495 < fullLength) { */
496 < fullLength) { H.extend = function(a, b) {
497 < fullLength) { var n;
498 < fullLength) { if (!a) {
499 < fullLength) { a = {};
500 < fullLength) { }
501 < fullLength) { for (n in b) {
502 < fullLength) { a[n] = b[n];
503 < fullLength) { }
504 < fullLength) { return a;
505 < fullLength) { };
506  
507 < fullLength) { /**
508 < fullLength) { * Utility function to deep merge two or more objects and return a third object.
509 < fullLength) { * If the first argument is true, the contents of the second object is copied
510 < fullLength) { * into the first object. The merge function can also be used with a single
511 < fullLength) { * object argument to create a deep copy of an object.
512 < fullLength) { *
513 < fullLength) { * @function #merge
514 < fullLength) { * @memberOf Highcharts
515 < fullLength) { * @param {Boolean} [extend] - Whether to extend the left-side object (a) or
516 < fullLength) { return a whole new object.
517 < fullLength) { * @param {Object} a - The first object to extend. When only this is given, the
518 < fullLength) { function returns a deep copy.
519 < fullLength) { * @param {...Object} [n] - An object to merge into the previous one.
520 < fullLength) { * @returns {Object} - The merged object. If the first argument is true, the
521 < fullLength) { * return is the same as the second argument.
522 < fullLength) { */
523 < fullLength) { H.merge = function() {
524 < fullLength) { var i,
525 < fullLength) { args = arguments,
526 < fullLength) { len,
527 < fullLength) { ret = {},
528 < fullLength) { doCopy = function(copy, original) {
529 < fullLength) { // An object is replacing a primitive
530 < fullLength) { if (typeof copy !== 'object') {
531 < fullLength) { copy = {};
532 < fullLength) { }
533  
534 < fullLength) { H.objectEach(original, function(value, key) {
535  
536 < fullLength) { // Copy the contents of objects, but not arrays or DOM nodes
537 < fullLength) { if (
538 < fullLength) { H.isObject(value, true) &&
539 < fullLength) { !H.isClass(value) &&
540 < fullLength) { !H.isDOMElement(value)
541 < fullLength) { ) {
542 < fullLength) { copy[key] = doCopy(copy[key] || {}, value);
543  
544 < fullLength) { // Primitives and arrays are copied over directly
545 < fullLength) { } else {
546 < fullLength) { copy[key] = original[key];
547 < fullLength) { }
548 < fullLength) { });
549 < fullLength) { return copy;
550 < fullLength) { };
551  
552 < fullLength) { // If first argument is true, copy into the existing object. Used in
553 < fullLength) { // setOptions.
554 < fullLength) { if (args[0] === true) {
555 < fullLength) { ret = args[1];
556 < fullLength) { args = Array.prototype.slice.call(args, 2);
557 < fullLength) { }
558  
559 < fullLength) { // For each argument, extend the return
560 < fullLength) { len = args.length;
561 < fullLength) { for (i = 0; i < len; i++) {
562 < fullLength) { ret = doCopy(ret, args[i]);
563 < fullLength) { }
564  
565 < fullLength) { return ret;
566 < fullLength) { };
567  
568 < fullLength) { /**
569 < fullLength) { * Shortcut for parseInt
570 < fullLength) { * @ignore
571 < fullLength) { * @param {Object} s
572 < fullLength) { * @param {Number} mag Magnitude
573 < fullLength) { */
574 < fullLength) { H.pInt = function(s, mag) {
575 < fullLength) { return parseInt(s, mag || 10);
576 < fullLength) { };
577  
578 < fullLength) { /**
579 < fullLength) { * Utility function to check for string type.
580 < fullLength) { *
581 < fullLength) { * @function #isString
582 < fullLength) { * @memberOf Highcharts
583 < fullLength) { * @param {Object} s - The item to check.
584 < fullLength) { * @returns {Boolean} - True if the argument is a string.
585 < fullLength) { */
586 < fullLength) { H.isString = function(s) {
587 < fullLength) { return typeof s === 'string';
588 < fullLength) { };
589  
590 < fullLength) { /**
591 < fullLength) { * Utility function to check if an item is an array.
592 < fullLength) { *
593 < fullLength) { * @function #isArray
594 < fullLength) { * @memberOf Highcharts
595 < fullLength) { * @param {Object} obj - The item to check.
596 < fullLength) { * @returns {Boolean} - True if the argument is an array.
597 < fullLength) { */
598 < fullLength) { H.isArray = function(obj) {
599 < fullLength) { var str = Object.prototype.toString.call(obj);
600 < fullLength) { return str === '[object Array]' || str === '[object Array Iterator]';
601 < fullLength) { };
602  
603 < fullLength) { /**
604 < fullLength) { * Utility function to check if an item is of type object.
605 < fullLength) { *
606 < fullLength) { * @function #isObject
607 < fullLength) { * @memberOf Highcharts
608 < fullLength) { * @param {Object} obj - The item to check.
609 < fullLength) { * @param {Boolean} [strict=false] - Also checks that the object is not an
610 < fullLength) { * array.
611 < fullLength) { * @returns {Boolean} - True if the argument is an object.
612 < fullLength) { */
613 < fullLength) { H.isObject = function(obj, strict) {
614 < fullLength) { return !!obj && typeof obj === 'object' && (!strict || !H.isArray(obj));
615 < fullLength) { };
616  
617 < fullLength) { /**
618 < fullLength) { * Utility function to check if an Object is a HTML Element.
619 < fullLength) { *
620 < fullLength) { * @function #isDOMElement
621 < fullLength) { * @memberOf Highcharts
622 < fullLength) { * @param {Object} obj - The item to check.
623 < fullLength) { * @returns {Boolean} - True if the argument is a HTML Element.
624 < fullLength) { */
625 < fullLength) { H.isDOMElement = function(obj) {
626 < fullLength) { return H.isObject(obj) && typeof obj.nodeType === 'number';
627 < fullLength) { };
628  
629 < fullLength) { /**
630 < fullLength) { * Utility function to check if an Object is an class.
631 < fullLength) { *
632 < fullLength) { * @function #isClass
633 < fullLength) { * @memberOf Highcharts
634 < fullLength) { * @param {Object} obj - The item to check.
635 < fullLength) { * @returns {Boolean} - True if the argument is an class.
636 < fullLength) { */
637 < fullLength) { H.isClass = function(obj) {
638 < fullLength) { var c = obj && obj.constructor;
639 < fullLength) { return !!(
640 < fullLength) { H.isObject(obj, true) &&
641 < fullLength) { !H.isDOMElement(obj) &&
642 < fullLength) { (c && c.name && c.name !== 'Object')
643 < fullLength) { );
644 < fullLength) { };
645  
646 < fullLength) { /**
647 < fullLength) { * Utility function to check if an item is of type number.
648 < fullLength) { *
649 < fullLength) { * @function #isNumber
650 < fullLength) { * @memberOf Highcharts
651 < fullLength) { * @param {Object} n - The item to check.
652 < fullLength) { * @returns {Boolean} - True if the item is a number and is not NaN.
653 < fullLength) { */
654 < fullLength) { H.isNumber = function(n) {
655 < fullLength) { return typeof n === 'number' && !isNaN(n);
656 < fullLength) { };
657  
658 < fullLength) { /**
659 < fullLength) { * Remove the last occurence of an item from an array.
660 < fullLength) { *
661 < fullLength) { * @function #erase
662 < fullLength) { * @memberOf Highcharts
663 < fullLength) { * @param {Array} arr - The array.
664 < fullLength) { * @param {*} item - The item to remove.
665 < fullLength) { */
666 < fullLength) { H.erase = function(arr, item) {
667 < fullLength) { var i = arr.length;
668 < fullLength) { while (i--) {
669 < fullLength) { if (arr[i] === item) {
670 < fullLength) { arr.splice(i, 1);
671 < fullLength) { break;
672 < fullLength) { }
673 < fullLength) { }
674 < fullLength) { };
675  
676 < fullLength) { /**
677 < fullLength) { * Check if an object is null or undefined.
678 < fullLength) { *
679 < fullLength) { * @function #defined
680 < fullLength) { * @memberOf Highcharts
681 < fullLength) { * @param {Object} obj - The object to check.
682 < fullLength) { * @returns {Boolean} - False if the object is null or undefined, otherwise
683 < fullLength) { * true.
684 < fullLength) { */
685 < fullLength) { H.defined = function(obj) {
686 < fullLength) { return obj !== undefined && obj !== null;
687 < fullLength) { };
688  
689 < fullLength) { /**
690 < fullLength) { * Set or get an attribute or an object of attributes. To use as a setter, pass
691 < fullLength) { * a key and a value, or let the second argument be a collection of keys and
692 < fullLength) { * values. To use as a getter, pass only a string as the second argument.
693 < fullLength) { *
694 < fullLength) { * @function #attr
695 < fullLength) { * @memberOf Highcharts
696 < fullLength) { * @param {Object} elem - The DOM element to receive the attribute(s).
697 < fullLength) { * @param {String|Object} [prop] - The property or an object of key-value pairs.
698 < fullLength) { * @param {String} [value] - The value if a single property is set.
699 < fullLength) { * @returns {*} When used as a getter, return the value.
700 < fullLength) { */
701 < fullLength) { H.attr = function(elem, prop, value) {
702 < fullLength) { var ret;
703  
704 < fullLength) { // if the prop is a string
705 < fullLength) { if (H.isString(prop)) {
706 < fullLength) { // set the value
707 < fullLength) { if (H.defined(value)) {
708 < fullLength) { elem.setAttribute(prop, value);
709  
710 < fullLength) { // get the value
711 < fullLength) { } else if (elem && elem.getAttribute) {
712 < fullLength) { ret = elem.getAttribute(prop);
713 < fullLength) { }
714  
715 < fullLength) { // else if prop is defined, it is a hash of key/value pairs
716 < fullLength) { } else if (H.defined(prop) && H.isObject(prop)) {
717 < fullLength) { H.objectEach(prop, function(val, key) {
718 < fullLength) { elem.setAttribute(key, val);
719 < fullLength) { });
720 < fullLength) { }
721 < fullLength) { return ret;
722 < fullLength) { };
723  
724 < fullLength) { /**
725 < fullLength) { * Check if an element is an array, and if not, make it into an array.
726 < fullLength) { *
727 < fullLength) { * @function #splat
728 < fullLength) { * @memberOf Highcharts
729 < fullLength) { * @param obj {*} - The object to splat.
730 < fullLength) { * @returns {Array} The produced or original array.
731 < fullLength) { */
732 < fullLength) { H.splat = function(obj) {
733 < fullLength) { return H.isArray(obj) ? obj : [obj];
734 < fullLength) { };
735  
736 < fullLength) { /**
737 < fullLength) { * Set a timeout if the delay is given, otherwise perform the function
738 < fullLength) { * synchronously.
739 < fullLength) { *
740 < fullLength) { * @function #syncTimeout
741 < fullLength) { * @memberOf Highcharts
742 < fullLength) { * @param {Function} fn - The function callback.
743 < fullLength) { * @param {Number} delay - Delay in milliseconds.
744 < fullLength) { * @param {Object} [context] - The context.
745 < fullLength) { * @returns {Number} An identifier for the timeout that can later be cleared
746 < fullLength) { * with clearTimeout.
747 < fullLength) { */
748 < fullLength) { H.syncTimeout = function(fn, delay, context) {
749 < fullLength) { if (delay) {
750 < fullLength) { return setTimeout(fn, delay, context);
751 < fullLength) { }
752 < fullLength) { fn.call(0, context);
753 < fullLength) { };
754  
755  
756 < fullLength) { /**
757 < fullLength) { * Return the first value that is not null or undefined.
758 < fullLength) { *
759 < fullLength) { * @function #pick
760 < fullLength) { * @memberOf Highcharts
761 < fullLength) { * @param {...*} items - Variable number of arguments to inspect.
762 < fullLength) { * @returns {*} The value of the first argument that is not null or undefined.
763 < fullLength) { */
764 < fullLength) { H.pick = function() {
765 < fullLength) { var args = arguments,
766 < fullLength) { i,
767 < fullLength) { arg,
768 < fullLength) { length = args.length;
769 < fullLength) { for (i = 0; i < length; i++) {
770 < fullLength) { arg = args[i];
771 < fullLength) { if (arg !== undefined && arg !== null) {
772 < fullLength) { return arg;
773 < fullLength) { }
774 < fullLength) { }
775 < fullLength) { };
776  
777 < fullLength) { /**
778 < fullLength) { * @typedef {Object} CSSObject - A style object with camel case property names.
779 < fullLength) { * The properties can be whatever styles are supported on the given SVG or HTML
780 < fullLength) { * element.
781 < fullLength) { * @example
782 < fullLength) { * {
783 < fullLength) { * fontFamily: 'monospace',
784 < fullLength) { * fontSize: '1.2em'
785 < fullLength) { * }
786 < fullLength) { */
787 < fullLength) { /**
788 < fullLength) { * Set CSS on a given element.
789 < fullLength) { *
790 < fullLength) { * @function #css
791 < fullLength) { * @memberOf Highcharts
792 < fullLength) { * @param {HTMLDOMElement} el - A HTML DOM element.
793 < fullLength) { * @param {CSSObject} styles - Style object with camel case property names.
794 < fullLength) { * @returns {void}
795 < fullLength) { */
796 < fullLength) { H.css = function(el, styles) {
797 < fullLength) { if (H.isMS && !H.svg) { // #2686
798 < fullLength) { if (styles && styles.opacity !== undefined) {
799 < fullLength) { styles.filter = 'alpha(opacity=' + (styles.opacity * 100) + ')';
800 < fullLength) { }
801 < fullLength) { }
802 < fullLength) { H.extend(el.style, styles);
803 < fullLength) { };
804  
805 < fullLength) { /**
806 < fullLength) { * A HTML DOM element.
807 < fullLength) { * @typedef {Object} HTMLDOMElement
808 < fullLength) { */
809  
810 < fullLength) { /**
811 < fullLength) { * Utility function to create an HTML element with attributes and styles.
812 < fullLength) { *
813 < fullLength) { * @function #createElement
814 < fullLength) { * @memberOf Highcharts
815 < fullLength) { * @param {String} tag - The HTML tag.
816 < fullLength) { * @param {Object} [attribs] - Attributes as an object of key-value pairs.
817 < fullLength) { * @param {CSSObject} [styles] - Styles as an object of key-value pairs.
818 < fullLength) { * @param {Object} [parent] - The parent HTML object.
819 < fullLength) { * @param {Boolean} [nopad=false] - If true, remove all padding, border and
820 < fullLength) { * margin.
821 < fullLength) { * @returns {HTMLDOMElement} The created DOM element.
822 < fullLength) { */
823 < fullLength) { H.createElement = function(tag, attribs, styles, parent, nopad) {
824 < fullLength) { var el = doc.createElement(tag),
825 < fullLength) { css = H.css;
826 < fullLength) { if (attribs) {
827 < fullLength) { H.extend(el, attribs);
828 < fullLength) { }
829 < fullLength) { if (nopad) {
830 < fullLength) { css(el, {
831 < fullLength) { padding: 0,
832 < fullLength) { border: 'none',
833 < fullLength) { margin: 0
834 < fullLength) { });
835 < fullLength) { }
836 < fullLength) { if (styles) {
837 < fullLength) { css(el, styles);
838 < fullLength) { }
839 < fullLength) { if (parent) {
840 < fullLength) { parent.appendChild(el);
841 < fullLength) { }
842 < fullLength) { return el;
843 < fullLength) { };
844  
845 < fullLength) { /**
846 < fullLength) { * Extend a prototyped class by new members.
847 < fullLength) { *
848 < fullLength) { * @function #extendClass
849 < fullLength) { * @memberOf Highcharts
850 < fullLength) { * @param {Object} parent - The parent prototype to inherit.
851 < fullLength) { * @param {Object} members - A collection of prototype members to add or
852 < fullLength) { * override compared to the parent prototype.
853 < fullLength) { * @returns {Object} A new prototype.
854 < fullLength) { */
855 < fullLength) { H.extendClass = function(parent, members) {
856 < fullLength) { var object = function() {};
857 < fullLength) { object.prototype = new parent(); // eslint-disable-line new-cap
858 < fullLength) { H.extend(object.prototype, members);
859 < fullLength) { return object;
860 < fullLength) { };
861  
862 < fullLength) { /**
863 < fullLength) { * Left-pad a string to a given length by adding a character repetetively.
864 < fullLength) { *
865 < fullLength) { * @function #pad
866 < fullLength) { * @memberOf Highcharts
867 < fullLength) { * @param {Number} number - The input string or number.
868 < fullLength) { * @param {Number} length - The desired string length.
869 < fullLength) { * @param {String} [padder=0] - The character to pad with.
870 < fullLength) { * @returns {String} The padded string.
871 < fullLength) { */
872 < fullLength) { H.pad = function(number, length, padder) {
873 < fullLength) { return new Array((length || 2) + 1 -
874 < fullLength) { String(number).length).join(padder || 0) + number;
875 < fullLength) { };
876  
877 < fullLength) { /**
878 < fullLength) { * @typedef {Number|String} RelativeSize - If a number is given, it defines the
879 < fullLength) { * pixel length. If a percentage string is given, like for example `'50%'`,
880 < fullLength) { * the setting defines a length relative to a base size, for example the size
881 < fullLength) { * of a container.
882 < fullLength) { */
883 < fullLength) { /**
884 < fullLength) { * Return a length based on either the integer value, or a percentage of a base.
885 < fullLength) { *
886 < fullLength) { * @function #relativeLength
887 < fullLength) { * @memberOf Highcharts
888 < fullLength) { * @param {RelativeSize} value - A percentage string or a number.
889 < fullLength) { * @param {Number} base - The full length that represents 100%.
890 < fullLength) { * @returns {Number} The computed length.
891 < fullLength) { */
892 < fullLength) { H.relativeLength = function(value, base) {
893 < fullLength) { return (/%$/).test(value) ?
894 < fullLength) { base * parseFloat(value) / 100 :
895 < fullLength) { parseFloat(value);
896 < fullLength) { };
897  
898 < fullLength) { /**
899 < fullLength) { * Wrap a method with extended functionality, preserving the original function.
900 < fullLength) { *
901 < fullLength) { * @function #wrap
902 < fullLength) { * @memberOf Highcharts
903 < fullLength) { * @param {Object} obj - The context object that the method belongs to. In real
904 < fullLength) { * cases, this is often a prototype.
905 < fullLength) { * @param {String} method - The name of the method to extend.
906 < fullLength) { * @param {Function} func - A wrapper function callback. This function is called
907 < fullLength) { * with the same arguments as the original function, except that the
908 < fullLength) { * original function is unshifted and passed as the first argument.
909 < fullLength) { * @returns {void}
910 < fullLength) { */
911 < fullLength) { H.wrap = function(obj, method, func) {
912 < fullLength) { var proceed = obj[method];
913 < fullLength) { obj[method] = function() {
914 < fullLength) { var args = Array.prototype.slice.call(arguments),
915 < fullLength) { outerArgs = arguments,
916 < fullLength) { ctx = this,
917 < fullLength) { ret;
918 < fullLength) { ctx.proceed = function() {
919 < fullLength) { proceed.apply(ctx, arguments.length ? arguments : outerArgs);
920 < fullLength) { };
921 < fullLength) { args.unshift(proceed);
922 < fullLength) { ret = func.apply(this, args);
923 < fullLength) { ctx.proceed = null;
924 < fullLength) { return ret;
925 < fullLength) { };
926 < fullLength) { };
927  
928 < fullLength) { /**
929 < fullLength) { * Get the time zone offset based on the current timezone information as set in
930 < fullLength) { * the global options.
931 < fullLength) { *
932 < fullLength) { * @function #getTZOffset
933 < fullLength) { * @memberOf Highcharts
934 < fullLength) { * @param {Number} timestamp - The JavaScript timestamp to inspect.
935 < fullLength) { * @return {Number} - The timezone offset in minutes compared to UTC.
936 < fullLength) { */
937 < fullLength) { H.getTZOffset = function(timestamp) {
938 < fullLength) { var d = H.Date;
939 < fullLength) { return ((d.hcGetTimezoneOffset && d.hcGetTimezoneOffset(timestamp)) ||
940 < fullLength) { d.hcTimezoneOffset || 0) * 60000;
941 < fullLength) { };
942  
943 < fullLength) { /**
944 < fullLength) { * Formats a JavaScript date timestamp (milliseconds since Jan 1st 1970) into a
945 < fullLength) { * human readable date string. The format is a subset of the formats for PHP's
946 < fullLength) { * [strftime]{@link
947 < fullLength) { * http://www.php.net/manual/en/function.strftime.php} function. Additional
948 < fullLength) { * formats can be given in the {@link Highcharts.dateFormats} hook.
949 < fullLength) { *
950 < fullLength) { * @function #dateFormat
951 < fullLength) { * @memberOf Highcharts
952 < fullLength) { * @param {String} format - The desired format where various time
953 < fullLength) { * representations are prefixed with %.
954 < fullLength) { * @param {Number} timestamp - The JavaScript timestamp.
955 < fullLength) { * @param {Boolean} [capitalize=false] - Upper case first letter in the return.
956 < fullLength) { * @returns {String} The formatted date.
957 < fullLength) { */
958 < fullLength) { H.dateFormat = function(format, timestamp, capitalize) {
959 < fullLength) { if (!H.defined(timestamp) || isNaN(timestamp)) {
960 < fullLength) { return H.defaultOptions.lang.invalidDate || '';
961 < fullLength) { }
962 < fullLength) { format = H.pick(format, '%Y-%m-%d %H:%M:%S');
963  
964 < fullLength) { var D = H.Date,
965 < fullLength) { date = new D(timestamp - H.getTZOffset(timestamp)),
966 < fullLength) { // get the basic time values
967 < fullLength) { hours = date[D.hcGetHours](),
968 < fullLength) { day = date[D.hcGetDay](),
969 < fullLength) { dayOfMonth = date[D.hcGetDate](),
970 < fullLength) { month = date[D.hcGetMonth](),
971 < fullLength) { fullYear = date[D.hcGetFullYear](),
972 < fullLength) { lang = H.defaultOptions.lang,
973 < fullLength) { langWeekdays = lang.weekdays,
974 < fullLength) { shortWeekdays = lang.shortWeekdays,
975 < fullLength) { pad = H.pad,
976  
977 < fullLength) { // List all format keys. Custom formats can be added from the outside.
978 < fullLength) { replacements = H.extend({
979  
980 < fullLength) { //-- Day
981 < fullLength) { // Short weekday, like 'Mon'
982 < fullLength) { 'a': shortWeekdays ?
983 < fullLength) { shortWeekdays[day] : langWeekdays[day].substr(0, 3),
984 < fullLength) { // Long weekday, like 'Monday'
985 < fullLength) { 'A': langWeekdays[day],
986 < fullLength) { // Two digit day of the month, 01 to 31
987 < fullLength) { 'd': pad(dayOfMonth),
988 < fullLength) { // Day of the month, 1 through 31
989 < fullLength) { 'e': pad(dayOfMonth, 2, ' '),
990 < fullLength) { 'w': day,
991  
992 < fullLength) { // Week (none implemented)
993 < fullLength) { //'W': weekNumber(),
994  
995 < fullLength) { //-- Month
996 < fullLength) { // Short month, like 'Jan'
997 < fullLength) { 'b': lang.shortMonths[month],
998 < fullLength) { // Long month, like 'January'
999 < fullLength) { 'B': lang.months[month],
1000 < fullLength) { // Two digit month number, 01 through 12
1001 < fullLength) { 'm': pad(month + 1),
1002  
1003 < fullLength) { //-- Year
1004 < fullLength) { // Two digits year, like 09 for 2009
1005 < fullLength) { 'y': fullYear.toString().substr(2, 2),
1006 < fullLength) { // Four digits year, like 2009
1007 < fullLength) { 'Y': fullYear,
1008  
1009 < fullLength) { //-- Time
1010 < fullLength) { // Two digits hours in 24h format, 00 through 23
1011 < fullLength) { 'H': pad(hours),
1012 < fullLength) { // Hours in 24h format, 0 through 23
1013 < fullLength) { 'k': hours,
1014 < fullLength) { // Two digits hours in 12h format, 00 through 11
1015 < fullLength) { 'I': pad((hours % 12) || 12),
1016 < fullLength) { // Hours in 12h format, 1 through 12
1017 < fullLength) { 'l': (hours % 12) || 12,
1018 < fullLength) { // Two digits minutes, 00 through 59
1019 < fullLength) { 'M': pad(date[D.hcGetMinutes]()),
1020 < fullLength) { // Upper case AM or PM
1021 < fullLength) { 'p': hours < 12 ? 'AM' : 'PM',
1022 < fullLength) { // Lower case AM or PM
1023 < fullLength) { 'P': hours < 12 ? 'am' : 'pm',
1024 < fullLength) { // Two digits seconds, 00 through 59
1025 < fullLength) { 'S': pad(date.getSeconds()),
1026 < fullLength) { // Milliseconds (naming from Ruby)
1027 < fullLength) { 'L': pad(Math.round(timestamp % 1000), 3)
1028 < fullLength) { },
1029  
1030 < fullLength) { /**
1031 < fullLength) { * A hook for defining additional date format specifiers. New
1032 < fullLength) { * specifiers are defined as key-value pairs by using the specifier
1033 < fullLength) { * as key, and a function which takes the timestamp as value. This
1034 < fullLength) { * function returns the formatted portion of the date.
1035 < fullLength) { *
1036 < fullLength) { * @type {Object}
1037 < fullLength) { * @name dateFormats
1038 < fullLength) { * @memberOf Highcharts
1039 < fullLength) { * @sample highcharts/global/dateformats/ Adding support for week
1040 < fullLength) { * number
1041 < fullLength) { */
1042 < fullLength) { H.dateFormats
1043 < fullLength) { );
1044  
1045  
1046 < fullLength) { // Do the replaces
1047 < fullLength) { H.objectEach(replacements, function(val, key) {
1048 < fullLength) { // Regex would do it in one line, but this is faster
1049 < fullLength) { while (format.indexOf('%' + key) !== -1) {
1050 < fullLength) { format = format.replace(
1051 < fullLength) { '%' + key,
1052 < fullLength) { typeof val === 'function' ? val(timestamp) : val
1053 < fullLength) { );
1054 < fullLength) { }
1055  
1056 < fullLength) { });
1057  
1058 < fullLength) { // Optionally capitalize the string and return
1059 < fullLength) { return capitalize ?
1060 < fullLength) { format.substr(0, 1).toUpperCase() + format.substr(1) :
1061 < fullLength) { format;
1062 < fullLength) { };
1063  
1064 < fullLength) { /**
1065 < fullLength) { * Format a single variable. Similar to sprintf, without the % prefix.
1066 < fullLength) { *
1067 < fullLength) { * @example
1068 < fullLength) { * formatSingle('.2f', 5); // => '5.00'.
1069 < fullLength) { *
1070 < fullLength) { * @function #formatSingle
1071 < fullLength) { * @memberOf Highcharts
1072 < fullLength) { * @param {String} format The format string.
1073 < fullLength) { * @param {*} val The value.
1074 < fullLength) { * @returns {String} The formatted representation of the value.
1075 < fullLength) { */
1076 < fullLength) { H.formatSingle = function(format, val) {
1077 < fullLength) { var floatRegex = /f$/,
1078 < fullLength) { decRegex = /\.([0-9])/,
1079 < fullLength) { lang = H.defaultOptions.lang,
1080 < fullLength) { decimals;
1081  
1082 < fullLength) { if (floatRegex.test(format)) { // float
1083 < fullLength) { decimals = format.match(decRegex);
1084 < fullLength) { decimals = decimals ? decimals[1] : -1;
1085 < fullLength) { if (val !== null) {
1086 < fullLength) { val = H.numberFormat(
1087 < fullLength) { val,
1088 < fullLength) { decimals,
1089 < fullLength) { lang.decimalPoint,
1090 < fullLength) { format.indexOf(',') > -1 ? lang.thousandsSep : ''
1091 < fullLength) { );
1092 < fullLength) { }
1093 < fullLength) { } else {
1094 < fullLength) { val = H.dateFormat(format, val);
1095 < fullLength) { }
1096 < fullLength) { return val;
1097 < fullLength) { };
1098  
1099 < fullLength) { /**
1100 < fullLength) { * Format a string according to a subset of the rules of Python's String.format
1101 < fullLength) { * method.
1102 < fullLength) { *
1103 < fullLength) { * @function #format
1104 < fullLength) { * @memberOf Highcharts
1105 < fullLength) { * @param {String} str The string to format.
1106 < fullLength) { * @param {Object} ctx The context, a collection of key-value pairs where each
1107 < fullLength) { * key is replaced by its value.
1108 < fullLength) { * @returns {String} The formatted string.
1109 < fullLength) { *
1110 < fullLength) { * @example
1111 < fullLength) { * var s = Highcharts.format(
1112 < fullLength) { * 'The {color} fox was {len:.2f} feet long',
1113 < fullLength) { * { color: 'red', len: Math.PI }
1114 < fullLength) { * );
1115 < fullLength) { * // => The red fox was 3.14 feet long
1116 < fullLength) { */
1117 < fullLength) { H.format = function(str, ctx) {
1118 < fullLength) { var splitter = '{',
1119 < fullLength) { isInside = false,
1120 < fullLength) { segment,
1121 < fullLength) { valueAndFormat,
1122 < fullLength) { path,
1123 < fullLength) { i,
1124 < fullLength) { len,
1125 < fullLength) { ret = [],
1126 < fullLength) { val,
1127 < fullLength) { index;
1128  
1129 < fullLength) { while (str) {
1130 < fullLength) { index = str.indexOf(splitter);
1131 < fullLength) { if (index === -1) {
1132 < fullLength) { break;
1133 < fullLength) { }
1134  
1135 < fullLength) { segment = str.slice(0, index);
1136 < fullLength) { if (isInside) { // we're on the closing bracket looking back
1137  
1138 < fullLength) { valueAndFormat = segment.split(':');
1139 < fullLength) { path = valueAndFormat.shift().split('.'); // get first and leave
1140 < fullLength) { len = path.length;
1141 < fullLength) { val = ctx;
1142  
1143 < fullLength) { // Assign deeper paths
1144 < fullLength) { for (i = 0; i < len; i++) {
1145 < fullLength) {< len; i++) { val = val[path[i]];
1146 < fullLength) {< len; i++) { }
1147  
1148 < fullLength) {< len; i++) { // Format the replacement
1149 < fullLength) {< len; i++) { if (valueAndFormat.length) {
1150 < fullLength) {< len; i++) { val = H.formatSingle(valueAndFormat.join(':'), val);
1151 < fullLength) {< len; i++) { }
1152  
1153 < fullLength) {< len; i++) { // Push the result and advance the cursor
1154 < fullLength) {< len; i++) { ret.push(val);
1155  
1156 < fullLength) {< len; i++) { } else {
1157 < fullLength) {< len; i++) { ret.push(segment);
1158  
1159 < fullLength) {< len; i++) { }
1160 < fullLength) {< len; i++) { str = str.slice(index + 1); // the rest
1161 < fullLength) {< len; i++) { isInside = !isInside; // toggle
1162 < fullLength) {< len; i++) { splitter = isInside ? '}' : '{'; // now look for next matching bracket
1163 < fullLength) {< len; i++) { }
1164 < fullLength) {< len; i++) { ret.push(str);
1165 < fullLength) {< len; i++) { return ret.join('');
1166 < fullLength) {< len; i++) { };
1167  
1168 < fullLength) {< len; i++) { /**
1169 < fullLength) {< len; i++) { * Get the magnitude of a number.
1170 < fullLength) {< len; i++) { *
1171 < fullLength) {< len; i++) { * @function #getMagnitude
1172 < fullLength) {< len; i++) { * @memberOf Highcharts
1173 < fullLength) {< len; i++) { * @param {Number} number The number.
1174 < fullLength) {< len; i++) { * @returns {Number} The magnitude, where 1-9 are magnitude 1, 10-99 magnitude 2
1175 < fullLength) {< len; i++) { * etc.
1176 < fullLength) {< len; i++) { */
1177 < fullLength) {< len; i++) { H.getMagnitude = function(num) {
1178 < fullLength) {< len; i++) { return Math.pow(10, Math.floor(Math.log(num) / Math.LN10));
1179 < fullLength) {< len; i++) { };
1180  
1181 < fullLength) {< len; i++) { /**
1182 < fullLength) {< len; i++) { * Take an interval and normalize it to multiples of round numbers.
1183 < fullLength) {< len; i++) { *
1184 < fullLength) {< len; i++) { * @todo Move this function to the Axis prototype. It is here only for
1185 < fullLength) {< len; i++) { * historical reasons.
1186 < fullLength) {< len; i++) { * @function #normalizeTickInterval
1187 < fullLength) {< len; i++) { * @memberOf Highcharts
1188 < fullLength) {< len; i++) { * @param {Number} interval - The raw, un-rounded interval.
1189 < fullLength) {< len; i++) { * @param {Array} [multiples] - Allowed multiples.
1190 < fullLength) {< len; i++) { * @param {Number} [magnitude] - The magnitude of the number.
1191 < fullLength) {< len; i++) { * @param {Boolean} [allowDecimals] - Whether to allow decimals.
1192 < fullLength) {< len; i++) { * @param {Boolean} [hasTickAmount] - If it has tickAmount, avoid landing
1193 < fullLength) {< len; i++) { * on tick intervals lower than original.
1194 < fullLength) {< len; i++) { * @returns {Number} The normalized interval.
1195 < fullLength) {< len; i++) { */
1196 < fullLength) {< len; i++) { H.normalizeTickInterval = function(interval, multiples, magnitude,
1197 < fullLength) {< len; i++) { allowDecimals, hasTickAmount) {
1198 < fullLength) {< len; i++) { var normalized,
1199 < fullLength) {< len; i++) { i,
1200 < fullLength) {< len; i++) { retInterval = interval;
1201  
1202 < fullLength) {< len; i++) { // round to a tenfold of 1, 2, 2.5 or 5
1203 < fullLength) {< len; i++) { magnitude = H.pick(magnitude, 1);
1204 < fullLength) {< len; i++) { normalized = interval / magnitude;
1205  
1206 < fullLength) {< len; i++) { // multiples for a linear scale
1207 < fullLength) {< len; i++) { if (!multiples) {
1208 < fullLength) {< len; i++) { multiples = hasTickAmount ?
1209 < fullLength) {< len; i++) { // Finer grained ticks when the tick amount is hard set, including
1210 < fullLength) {< len; i++) { // when alignTicks is true on multiple axes (#4580).
1211 < fullLength) {< len; i++) { [1, 1.2, 1.5, 2, 2.5, 3, 4, 5, 6, 8, 10] :
1212  
1213 < fullLength) {< len; i++) { // Else, let ticks fall on rounder numbers
1214 < fullLength) {< len; i++) { [1, 2, 2.5, 5, 10];
1215  
1216  
1217 < fullLength) {< len; i++) { // the allowDecimals option
1218 < fullLength) {< len; i++) { if (allowDecimals === false) {
1219 < fullLength) {< len; i++) { if (magnitude === 1) {
1220 < fullLength) {< len; i++) { multiples = H.grep(multiples, function(num) {
1221 < fullLength) {< len; i++) { return num % 1 === 0;
1222 < fullLength) {< len; i++) { });
1223 < fullLength) {< len; i++) { } else if (magnitude <= 0.1) {
1224 < fullLength) {< len; i++) {<= 0.1) { multiples = [1 / magnitude];
1225 < fullLength) {< len; i++) {<= 0.1) { }
1226 < fullLength) {< len; i++) {<= 0.1) { }
1227 < fullLength) {< len; i++) {<= 0.1) { }
1228  
1229 < fullLength) {< len; i++) {<= 0.1) { // normalize the interval to the nearest multiple
1230 < fullLength) {< len; i++) {<= 0.1) { for (i = 0; i < multiples.length; i++) {
1231 < fullLength) {< len; i++) {<= 0.1) { retInterval = multiples[i];
1232 < fullLength) {< len; i++) {<= 0.1) { // only allow tick amounts smaller than natural
1233 < fullLength) {< len; i++) {<= 0.1) { if ((hasTickAmount && retInterval * magnitude >= interval) ||
1234 < fullLength) {< len; i++) {<= 0.1) { (!hasTickAmount && (normalized <= (multiples[i] +
1235 < fullLength) {< len; i++) {<= 0.1) { (multiples[i + 1] || multiples[i])) / 2))) {
1236 < fullLength) {< len; i++) {<= 0.1) { break;
1237 < fullLength) {< len; i++) {<= 0.1) { }
1238 < fullLength) {< len; i++) {<= 0.1) { }
1239  
1240 < fullLength) {< len; i++) {<= 0.1) { // Multiply back to the correct magnitude. Correct floats to appropriate
1241 < fullLength) {< len; i++) {<= 0.1) { // precision (#6085).
1242 < fullLength) {< len; i++) {<= 0.1) { retInterval = H.correctFloat(
1243 < fullLength) {< len; i++) {<= 0.1) { retInterval * magnitude, -Math.round(Math.log(0.001) / Math.LN10)
1244 < fullLength) {< len; i++) {<= 0.1) { );
1245  
1246 < fullLength) {< len; i++) {<= 0.1) { return retInterval;
1247 < fullLength) {< len; i++) {<= 0.1) { };
1248  
1249  
1250 < fullLength) {< len; i++) {<= 0.1) { /**
1251 < fullLength) {< len; i++) {<= 0.1) { * Sort an object array and keep the order of equal items. The ECMAScript
1252 < fullLength) {< len; i++) {<= 0.1) { * standard does not specify the behaviour when items are equal.
1253 < fullLength) {< len; i++) {<= 0.1) { *
1254 < fullLength) {< len; i++) {<= 0.1) { * @function #stableSort
1255 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1256 < fullLength) {< len; i++) {<= 0.1) { * @param {Array} arr - The array to sort.
1257 < fullLength) {< len; i++) {<= 0.1) { * @param {Function} sortFunction - The function to sort it with, like with
1258 < fullLength) {< len; i++) {<= 0.1) { * regular Array.prototype.sort.
1259 < fullLength) {< len; i++) {<= 0.1) { * @returns {void}
1260 < fullLength) {< len; i++) {<= 0.1) { */
1261 < fullLength) {< len; i++) {<= 0.1) { H.stableSort = function(arr, sortFunction) {
1262 < fullLength) {< len; i++) {<= 0.1) { var length = arr.length,
1263 < fullLength) {< len; i++) {<= 0.1) { sortValue,
1264 < fullLength) {< len; i++) {<= 0.1) { i;
1265  
1266 < fullLength) {< len; i++) {<= 0.1) { // Add index to each item
1267 < fullLength) {< len; i++) {<= 0.1) { for (i = 0; i < length; i++) {
1268 < fullLength) {< len; i++) {<= 0.1) { arr[i].safeI = i; // stable sort index
1269 < fullLength) {< len; i++) {<= 0.1) { }
1270  
1271 < fullLength) {< len; i++) {<= 0.1) { arr.sort(function(a, b) {
1272 < fullLength) {< len; i++) {<= 0.1) { sortValue = sortFunction(a, b);
1273 < fullLength) {< len; i++) {<= 0.1) { return sortValue === 0 ? a.safeI - b.safeI : sortValue;
1274 < fullLength) {< len; i++) {<= 0.1) { });
1275  
1276 < fullLength) {< len; i++) {<= 0.1) { // Remove index from items
1277 < fullLength) {< len; i++) {<= 0.1) { for (i = 0; i < length; i++) {
1278 < fullLength) {< len; i++) {<= 0.1) { delete arr[i].safeI; // stable sort index
1279 < fullLength) {< len; i++) {<= 0.1) { }
1280 < fullLength) {< len; i++) {<= 0.1) { };
1281  
1282 < fullLength) {< len; i++) {<= 0.1) { /**
1283 < fullLength) {< len; i++) {<= 0.1) { * Non-recursive method to find the lowest member of an array. `Math.min` raises
1284 < fullLength) {< len; i++) {<= 0.1) { * a maximum call stack size exceeded error in Chrome when trying to apply more
1285 < fullLength) {< len; i++) {<= 0.1) { * than 150.000 points. This method is slightly slower, but safe.
1286 < fullLength) {< len; i++) {<= 0.1) { *
1287 < fullLength) {< len; i++) {<= 0.1) { * @function #arrayMin
1288 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1289 < fullLength) {< len; i++) {<= 0.1) { * @param {Array} data An array of numbers.
1290 < fullLength) {< len; i++) {<= 0.1) { * @returns {Number} The lowest number.
1291 < fullLength) {< len; i++) {<= 0.1) { */
1292 < fullLength) {< len; i++) {<= 0.1) { H.arrayMin = function(data) {
1293 < fullLength) {< len; i++) {<= 0.1) { var i = data.length,
1294 < fullLength) {< len; i++) {<= 0.1) { min = data[0];
1295  
1296 < fullLength) {< len; i++) {<= 0.1) { while (i--) {
1297 < fullLength) {< len; i++) {<= 0.1) { if (data[i] < min) {
1298 < fullLength) {< len; i++) {<= 0.1) { min = data[i];
1299 < fullLength) {< len; i++) {<= 0.1) { }
1300 < fullLength) {< len; i++) {<= 0.1) { }
1301 < fullLength) {< len; i++) {<= 0.1) { return min;
1302 < fullLength) {< len; i++) {<= 0.1) { };
1303  
1304 < fullLength) {< len; i++) {<= 0.1) { /**
1305 < fullLength) {< len; i++) {<= 0.1) { * Non-recursive method to find the lowest member of an array. `Math.max` raises
1306 < fullLength) {< len; i++) {<= 0.1) { * a maximum call stack size exceeded error in Chrome when trying to apply more
1307 < fullLength) {< len; i++) {<= 0.1) { * than 150.000 points. This method is slightly slower, but safe.
1308 < fullLength) {< len; i++) {<= 0.1) { *
1309 < fullLength) {< len; i++) {<= 0.1) { * @function #arrayMax
1310 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1311 < fullLength) {< len; i++) {<= 0.1) { * @param {Array} data - An array of numbers.
1312 < fullLength) {< len; i++) {<= 0.1) { * @returns {Number} The highest number.
1313 < fullLength) {< len; i++) {<= 0.1) { */
1314 < fullLength) {< len; i++) {<= 0.1) { H.arrayMax = function(data) {
1315 < fullLength) {< len; i++) {<= 0.1) { var i = data.length,
1316 < fullLength) {< len; i++) {<= 0.1) { max = data[0];
1317  
1318 < fullLength) {< len; i++) {<= 0.1) { while (i--) {
1319 < fullLength) {< len; i++) {<= 0.1) { if (data[i] > max) {
1320 < fullLength) {< len; i++) {<= 0.1) { max = data[i];
1321 < fullLength) {< len; i++) {<= 0.1) { }
1322 < fullLength) {< len; i++) {<= 0.1) { }
1323 < fullLength) {< len; i++) {<= 0.1) { return max;
1324 < fullLength) {< len; i++) {<= 0.1) { };
1325  
1326 < fullLength) {< len; i++) {<= 0.1) { /**
1327 < fullLength) {< len; i++) {<= 0.1) { * Utility method that destroys any SVGElement instances that are properties on
1328 < fullLength) {< len; i++) {<= 0.1) { * the given object. It loops all properties and invokes destroy if there is a
1329 < fullLength) {< len; i++) {<= 0.1) { * destroy method. The property is then delete.
1330 < fullLength) {< len; i++) {<= 0.1) { *
1331 < fullLength) {< len; i++) {<= 0.1) { * @function #destroyObjectProperties
1332 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1333 < fullLength) {< len; i++) {<= 0.1) { * @param {Object} obj - The object to destroy properties on.
1334 < fullLength) {< len; i++) {<= 0.1) { * @param {Object} [except] - Exception, do not destroy this property, only
1335 < fullLength) {< len; i++) {<= 0.1) { * delete it.
1336 < fullLength) {< len; i++) {<= 0.1) { * @returns {void}
1337 < fullLength) {< len; i++) {<= 0.1) { */
1338 < fullLength) {< len; i++) {<= 0.1) { H.destroyObjectProperties = function(obj, except) {
1339 < fullLength) {< len; i++) {<= 0.1) { H.objectEach(obj, function(val, n) {
1340 < fullLength) {< len; i++) {<= 0.1) { // If the object is non-null and destroy is defined
1341 < fullLength) {< len; i++) {<= 0.1) { if (val && val !== except && val.destroy) {
1342 < fullLength) {< len; i++) {<= 0.1) { // Invoke the destroy
1343 < fullLength) {< len; i++) {<= 0.1) { val.destroy();
1344 < fullLength) {< len; i++) {<= 0.1) { }
1345  
1346 < fullLength) {< len; i++) {<= 0.1) { // Delete the property from the object.
1347 < fullLength) {< len; i++) {<= 0.1) { delete obj[n];
1348 < fullLength) {< len; i++) {<= 0.1) { });
1349 < fullLength) {< len; i++) {<= 0.1) { };
1350  
1351  
1352 < fullLength) {< len; i++) {<= 0.1) { /**
1353 < fullLength) {< len; i++) {<= 0.1) { * Discard a HTML element by moving it to the bin and delete.
1354 < fullLength) {< len; i++) {<= 0.1) { *
1355 < fullLength) {< len; i++) {<= 0.1) { * @function #discardElement
1356 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1357 < fullLength) {< len; i++) {<= 0.1) { * @param {HTMLDOMElement} element - The HTML node to discard.
1358 < fullLength) {< len; i++) {<= 0.1) { * @returns {void}
1359 < fullLength) {< len; i++) {<= 0.1) { */
1360 < fullLength) {< len; i++) {<= 0.1) { H.discardElement = function(element) {
1361 < fullLength) {< len; i++) {<= 0.1) { var garbageBin = H.garbageBin;
1362 < fullLength) {< len; i++) {<= 0.1) { // create a garbage bin element, not part of the DOM
1363 < fullLength) {< len; i++) {<= 0.1) { if (!garbageBin) {
1364 < fullLength) {< len; i++) {<= 0.1) { garbageBin = H.createElement('div');
1365 < fullLength) {< len; i++) {<= 0.1) { }
1366  
1367 < fullLength) {< len; i++) {<= 0.1) { // move the node and empty bin
1368 < fullLength) {< len; i++) {<= 0.1) { if (element) {
1369 < fullLength) {< len; i++) {<= 0.1) { garbageBin.appendChild(element);
1370 < fullLength) {< len; i++) {<= 0.1) { }
1371 < fullLength) {< len; i++) {<= 0.1) { garbageBin.innerHTML = '';
1372 < fullLength) {< len; i++) {<= 0.1) { };
1373  
1374 < fullLength) {< len; i++) {<= 0.1) { /**
1375 < fullLength) {< len; i++) {<= 0.1) { * Fix JS round off float errors.
1376 < fullLength) {< len; i++) {<= 0.1) { *
1377 < fullLength) {< len; i++) {<= 0.1) { * @function #correctFloat
1378 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1379 < fullLength) {< len; i++) {<= 0.1) { * @param {Number} num - A float number to fix.
1380 < fullLength) {< len; i++) {<= 0.1) { * @param {Number} [prec=14] - The precision.
1381 < fullLength) {< len; i++) {<= 0.1) { * @returns {Number} The corrected float number.
1382 < fullLength) {< len; i++) {<= 0.1) { */
1383 < fullLength) {< len; i++) {<= 0.1) { H.correctFloat = function(num, prec) {
1384 < fullLength) {< len; i++) {<= 0.1) { return parseFloat(
1385 < fullLength) {< len; i++) {<= 0.1) { num.toPrecision(prec || 14)
1386 < fullLength) {< len; i++) {<= 0.1) { );
1387 < fullLength) {< len; i++) {<= 0.1) { };
1388  
1389 < fullLength) {< len; i++) {<= 0.1) { /**
1390 < fullLength) {< len; i++) {<= 0.1) { * Set the global animation to either a given value, or fall back to the given
1391 < fullLength) {< len; i++) {<= 0.1) { * chart's animation option.
1392 < fullLength) {< len; i++) {<= 0.1) { *
1393 < fullLength) {< len; i++) {<= 0.1) { * @function #setAnimation
1394 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1395 < fullLength) {< len; i++) {<= 0.1) { * @param {Boolean|Animation} animation - The animation object.
1396 < fullLength) {< len; i++) {<= 0.1) { * @param {Object} chart - The chart instance.
1397 < fullLength) {< len; i++) {<= 0.1) { * @returns {void}
1398 < fullLength) {< len; i++) {<= 0.1) { * @todo This function always relates to a chart, and sets a property on the
1399 < fullLength) {< len; i++) {<= 0.1) { * renderer, so it should be moved to the SVGRenderer.
1400 < fullLength) {< len; i++) {<= 0.1) { */
1401 < fullLength) {< len; i++) {<= 0.1) { H.setAnimation = function(animation, chart) {
1402 < fullLength) {< len; i++) {<= 0.1) { chart.renderer.globalAnimation = H.pick(
1403 < fullLength) {< len; i++) {<= 0.1) { animation,
1404 < fullLength) {< len; i++) {<= 0.1) { chart.options.chart.animation,
1405 < fullLength) {< len; i++) {<= 0.1) { true
1406 < fullLength) {< len; i++) {<= 0.1) { );
1407 < fullLength) {< len; i++) {<= 0.1) { };
1408  
1409 < fullLength) {< len; i++) {<= 0.1) { /**
1410 < fullLength) {< len; i++) {<= 0.1) { * Get the animation in object form, where a disabled animation is always
1411 < fullLength) {< len; i++) {<= 0.1) { * returned as `{ duration: 0 }`.
1412 < fullLength) {< len; i++) {<= 0.1) { *
1413 < fullLength) {< len; i++) {<= 0.1) { * @function #animObject
1414 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1415 < fullLength) {< len; i++) {<= 0.1) { * @param {Boolean|AnimationOptions} animation - An animation setting. Can be an
1416 < fullLength) {< len; i++) {<= 0.1) { * object with duration, complete and easing properties, or a boolean to
1417 < fullLength) {< len; i++) {<= 0.1) { * enable or disable.
1418 < fullLength) {< len; i++) {<= 0.1) { * @returns {AnimationOptions} An object with at least a duration property.
1419 < fullLength) {< len; i++) {<= 0.1) { */
1420 < fullLength) {< len; i++) {<= 0.1) { H.animObject = function(animation) {
1421 < fullLength) {< len; i++) {<= 0.1) { return H.isObject(animation) ?
1422 < fullLength) {< len; i++) {<= 0.1) { H.merge(animation) : {
1423 < fullLength) {< len; i++) {<= 0.1) { duration: animation ? 500 : 0
1424 < fullLength) {< len; i++) {<= 0.1) { };
1425 < fullLength) {< len; i++) {<= 0.1) { };
1426  
1427 < fullLength) {< len; i++) {<= 0.1) { /**
1428 < fullLength) {< len; i++) {<= 0.1) { * The time unit lookup
1429 < fullLength) {< len; i++) {<= 0.1) { */
1430 < fullLength) {< len; i++) {<= 0.1) { H.timeUnits = {
1431 < fullLength) {< len; i++) {<= 0.1) { millisecond: 1,
1432 < fullLength) {< len; i++) {<= 0.1) { second: 1000,
1433 < fullLength) {< len; i++) {<= 0.1) { minute: 60000,
1434 < fullLength) {< len; i++) {<= 0.1) { hour: 3600000,
1435 < fullLength) {< len; i++) {<= 0.1) { day: 24 * 3600000,
1436 < fullLength) {< len; i++) {<= 0.1) { week: 7 * 24 * 3600000,
1437 < fullLength) {< len; i++) {<= 0.1) { month: 28 * 24 * 3600000,
1438 < fullLength) {< len; i++) {<= 0.1) { year: 364 * 24 * 3600000
1439 < fullLength) {< len; i++) {<= 0.1) { };
1440  
1441 < fullLength) {< len; i++) {<= 0.1) { /**
1442 < fullLength) {< len; i++) {<= 0.1) { * Format a number and return a string based on input settings.
1443 < fullLength) {< len; i++) {<= 0.1) { *
1444 < fullLength) {< len; i++) {<= 0.1) { * @function #numberFormat
1445 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1446 < fullLength) {< len; i++) {<= 0.1) { * @param {Number} number - The input number to format.
1447 < fullLength) {< len; i++) {<= 0.1) { * @param {Number} decimals - The amount of decimals. A value of -1 preserves
1448 < fullLength) {< len; i++) {<= 0.1) { * the amount in the input number.
1449 < fullLength) {< len; i++) {<= 0.1) { * @param {String} [decimalPoint] - The decimal point, defaults to the one given
1450 < fullLength) {< len; i++) {<= 0.1) { * in the lang options, or a dot.
1451 < fullLength) {< len; i++) {<= 0.1) { * @param {String} [thousandsSep] - The thousands separator, defaults to the one
1452 < fullLength) {< len; i++) {<= 0.1) { * given in the lang options, or a space character.
1453 < fullLength) {< len; i++) {<= 0.1) { * @returns {String} The formatted number.
1454 < fullLength) {< len; i++) {<= 0.1) { *
1455 < fullLength) {< len; i++) {<= 0.1) { * @sample members/highcharts-numberformat/ Custom number format
1456 < fullLength) {< len; i++) {<= 0.1) { */
1457 < fullLength) {< len; i++) {<= 0.1) { H.numberFormat = function(number, decimals, decimalPoint, thousandsSep) {
1458 < fullLength) {< len; i++) {<= 0.1) { number = +number || 0;
1459 < fullLength) {< len; i++) {<= 0.1) { decimals = +decimals;
1460  
1461 < fullLength) {< len; i++) {<= 0.1) { var lang = H.defaultOptions.lang,
1462 < fullLength) {< len; i++) {<= 0.1) { origDec = (number.toString().split('.')[1] || '').length,
1463 < fullLength) {< len; i++) {<= 0.1) { strinteger,
1464 < fullLength) {< len; i++) {<= 0.1) { thousands,
1465 < fullLength) {< len; i++) {<= 0.1) { ret,
1466 < fullLength) {< len; i++) {<= 0.1) { roundedNumber;
1467  
1468 < fullLength) {< len; i++) {<= 0.1) { if (decimals === -1) {
1469 < fullLength) {< len; i++) {<= 0.1) { // Preserve decimals. Not huge numbers (#3793).
1470 < fullLength) {< len; i++) {<= 0.1) { decimals = Math.min(origDec, 20);
1471 < fullLength) {< len; i++) {<= 0.1) { } else if (!H.isNumber(decimals)) {
1472 < fullLength) {< len; i++) {<= 0.1) { decimals = 2;
1473 < fullLength) {< len; i++) {<= 0.1) { }
1474  
1475 < fullLength) {< len; i++) {<= 0.1) { // Add another decimal to avoid rounding errors of float numbers. (#4573)
1476 < fullLength) {< len; i++) {<= 0.1) { // Then use toFixed to handle rounding.
1477 < fullLength) {< len; i++) {<= 0.1) { roundedNumber = (
1478 < fullLength) {< len; i++) {<= 0.1) { Math.abs(number) + Math.pow(10, -Math.max(decimals, origDec) - 1)
1479 < fullLength) {< len; i++) {<= 0.1) { ).toFixed(decimals);
1480  
1481 < fullLength) {< len; i++) {<= 0.1) { // A string containing the positive integer component of the number
1482 < fullLength) {< len; i++) {<= 0.1) { strinteger = String(H.pInt(roundedNumber));
1483  
1484 < fullLength) {< len; i++) {<= 0.1) { // Leftover after grouping into thousands. Can be 0, 1 or 3.
1485 < fullLength) {< len; i++) {<= 0.1) { thousands = strinteger.length > 3 ? strinteger.length % 3 : 0;
1486  
1487 < fullLength) {< len; i++) {<= 0.1) { // Language
1488 < fullLength) {< len; i++) {<= 0.1) { decimalPoint = H.pick(decimalPoint, lang.decimalPoint);
1489 < fullLength) {< len; i++) {<= 0.1) { thousandsSep = H.pick(thousandsSep, lang.thousandsSep);
1490  
1491 < fullLength) {< len; i++) {<= 0.1) { // Start building the return
1492 < fullLength) {< len; i++) {<= 0.1) { ret = number < 0 ? '-' : '';
1493  
1494 < fullLength) {< len; i++) {<= 0.1) { // Add the leftover after grouping into thousands. For example, in the
1495 < fullLength) {< len; i++) {<= 0.1) { // number 42 000 000, this line adds 42.
1496 < fullLength) {< len; i++) {<= 0.1) { ret += thousands ? strinteger.substr(0, thousands) + thousandsSep : '';
1497  
1498 < fullLength) {< len; i++) {<= 0.1) { // Add the remaining thousands groups, joined by the thousands separator
1499 < fullLength) {< len; i++) {<= 0.1) { ret += strinteger
1500 < fullLength) {< len; i++) {<= 0.1) { .substr(thousands)
1501 < fullLength) {< len; i++) {<= 0.1) { .replace(/(\d{3})(?=\d)/g, '$1' + thousandsSep);
1502  
1503 < fullLength) {< len; i++) {<= 0.1) { // Add the decimal point and the decimal component
1504 < fullLength) {< len; i++) {<= 0.1) { if (decimals) {
1505 < fullLength) {< len; i++) {<= 0.1) { // Get the decimal component
1506 < fullLength) {< len; i++) {<= 0.1) { ret += decimalPoint + roundedNumber.slice(-decimals);
1507 < fullLength) {< len; i++) {<= 0.1) { }
1508  
1509 < fullLength) {< len; i++) {<= 0.1) { return ret;
1510 < fullLength) {< len; i++) {<= 0.1) { };
1511  
1512 < fullLength) {< len; i++) {<= 0.1) { /**
1513 < fullLength) {< len; i++) {<= 0.1) { * Easing definition
1514 < fullLength) {< len; i++) {<= 0.1) { * @ignore
1515 < fullLength) {< len; i++) {<= 0.1) { * @param {Number} pos Current position, ranging from 0 to 1.
1516 < fullLength) {< len; i++) {<= 0.1) { */
1517 < fullLength) {< len; i++) {<= 0.1) { Math.easeInOutSine = function(pos) {
1518 < fullLength) {< len; i++) {<= 0.1) { return -0.5 * (Math.cos(Math.PI * pos) - 1);
1519 < fullLength) {< len; i++) {<= 0.1) { };
1520  
1521 < fullLength) {< len; i++) {<= 0.1) { /**
1522 < fullLength) {< len; i++) {<= 0.1) { * Get the computed CSS value for given element and property, only for numerical
1523 < fullLength) {< len; i++) {<= 0.1) { * properties. For width and height, the dimension of the inner box (excluding
1524 < fullLength) {< len; i++) {<= 0.1) { * padding) is returned. Used for fitting the chart within the container.
1525 < fullLength) {< len; i++) {<= 0.1) { *
1526 < fullLength) {< len; i++) {<= 0.1) { * @function #getStyle
1527 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1528 < fullLength) {< len; i++) {<= 0.1) { * @param {HTMLDOMElement} el - A HTML element.
1529 < fullLength) {< len; i++) {<= 0.1) { * @param {String} prop - The property name.
1530 < fullLength) {< len; i++) {<= 0.1) { * @param {Boolean} [toInt=true] - Parse to integer.
1531 < fullLength) {< len; i++) {<= 0.1) { * @returns {Number} - The numeric value.
1532 < fullLength) {< len; i++) {<= 0.1) { */
1533 < fullLength) {< len; i++) {<= 0.1) { H.getStyle = function(el, prop, toInt) {
1534  
1535 < fullLength) {< len; i++) {<= 0.1) { var style;
1536  
1537 < fullLength) {< len; i++) {<= 0.1) { // For width and height, return the actual inner pixel size (#4913)
1538 < fullLength) {< len; i++) {<= 0.1) { if (prop === 'width') {
1539 < fullLength) {< len; i++) {<= 0.1) { return Math.min(el.offsetWidth, el.scrollWidth) -
1540 < fullLength) {< len; i++) {<= 0.1) { H.getStyle(el, 'padding-left') -
1541 < fullLength) {< len; i++) {<= 0.1) { H.getStyle(el, 'padding-right');
1542 < fullLength) {< len; i++) {<= 0.1) { } else if (prop === 'height') {
1543 < fullLength) {< len; i++) {<= 0.1) { return Math.min(el.offsetHeight, el.scrollHeight) -
1544 < fullLength) {< len; i++) {<= 0.1) { H.getStyle(el, 'padding-top') -
1545 < fullLength) {< len; i++) {<= 0.1) { H.getStyle(el, 'padding-bottom');
1546 < fullLength) {< len; i++) {<= 0.1) { }
1547  
1548 < fullLength) {< len; i++) {<= 0.1) { // Otherwise, get the computed style
1549 < fullLength) {< len; i++) {<= 0.1) { style = win.getComputedStyle(el, undefined);
1550 < fullLength) {< len; i++) {<= 0.1) { if (style) {
1551 < fullLength) {< len; i++) {<= 0.1) { style = style.getPropertyValue(prop);
1552 < fullLength) {< len; i++) {<= 0.1) { if (H.pick(toInt, true)) {
1553 < fullLength) {< len; i++) {<= 0.1) { style = H.pInt(style);
1554 < fullLength) {< len; i++) {<= 0.1) { }
1555 < fullLength) {< len; i++) {<= 0.1) { }
1556 < fullLength) {< len; i++) {<= 0.1) { return style;
1557 < fullLength) {< len; i++) {<= 0.1) { };
1558  
1559 < fullLength) {< len; i++) {<= 0.1) { /**
1560 < fullLength) {< len; i++) {<= 0.1) { * Search for an item in an array.
1561 < fullLength) {< len; i++) {<= 0.1) { *
1562 < fullLength) {< len; i++) {<= 0.1) { * @function #inArray
1563 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1564 < fullLength) {< len; i++) {<= 0.1) { * @param {*} item - The item to search for.
1565 < fullLength) {< len; i++) {<= 0.1) { * @param {arr} arr - The array or node collection to search in.
1566 < fullLength) {< len; i++) {<= 0.1) { * @returns {Number} - The index within the array, or -1 if not found.
1567 < fullLength) {< len; i++) {<= 0.1) { */
1568 < fullLength) {< len; i++) {<= 0.1) { H.inArray = function(item, arr) {
1569 < fullLength) {< len; i++) {<= 0.1) { return arr.indexOf ? arr.indexOf(item) : [].indexOf.call(arr, item);
1570 < fullLength) {< len; i++) {<= 0.1) { };
1571  
1572 < fullLength) {< len; i++) {<= 0.1) { /**
1573 < fullLength) {< len; i++) {<= 0.1) { * Filter an array by a callback.
1574 < fullLength) {< len; i++) {<= 0.1) { *
1575 < fullLength) {< len; i++) {<= 0.1) { * @function #grep
1576 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1577 < fullLength) {< len; i++) {<= 0.1) { * @param {Array} arr - The array to filter.
1578 < fullLength) {< len; i++) {<= 0.1) { * @param {Function} callback - The callback function. The function receives the
1579 < fullLength) {< len; i++) {<= 0.1) { * item as the first argument. Return `true` if the item is to be
1580 < fullLength) {< len; i++) {<= 0.1) { * preserved.
1581 < fullLength) {< len; i++) {<= 0.1) { * @returns {Array} - A new, filtered array.
1582 < fullLength) {< len; i++) {<= 0.1) { */
1583 < fullLength) {< len; i++) {<= 0.1) { H.grep = function(arr, callback) {
1584 < fullLength) {< len; i++) {<= 0.1) { return [].filter.call(arr, callback);
1585 < fullLength) {< len; i++) {<= 0.1) { };
1586  
1587 < fullLength) {< len; i++) {<= 0.1) { /**
1588 < fullLength) {< len; i++) {<= 0.1) { * Return the value of the first element in the array that satisfies the
1589 < fullLength) {< len; i++) {<= 0.1) { * provided testing function.
1590 < fullLength) {< len; i++) {<= 0.1) { *
1591 < fullLength) {< len; i++) {<= 0.1) { * @function #find
1592 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1593 < fullLength) {< len; i++) {<= 0.1) { * @param {Array} arr - The array to test.
1594 < fullLength) {< len; i++) {<= 0.1) { * @param {Function} callback - The callback function. The function receives the
1595 < fullLength) {< len; i++) {<= 0.1) { * item as the first argument. Return `true` if this item satisfies the
1596 < fullLength) {< len; i++) {<= 0.1) { * condition.
1597 < fullLength) {< len; i++) {<= 0.1) { * @returns {Mixed} - The value of the element.
1598 < fullLength) {< len; i++) {<= 0.1) { */
1599 < fullLength) {< len; i++) {<= 0.1) { H.find = function(arr, callback) {
1600 < fullLength) {< len; i++) {<= 0.1) { return [].find.call(arr, callback);
1601 < fullLength) {< len; i++) {<= 0.1) { };
1602  
1603 < fullLength) {< len; i++) {<= 0.1) { /**
1604 < fullLength) {< len; i++) {<= 0.1) { * Map an array by a callback.
1605 < fullLength) {< len; i++) {<= 0.1) { *
1606 < fullLength) {< len; i++) {<= 0.1) { * @function #map
1607 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1608 < fullLength) {< len; i++) {<= 0.1) { * @param {Array} arr - The array to map.
1609 < fullLength) {< len; i++) {<= 0.1) { * @param {Function} fn - The callback function. Return the new value for the
1610 < fullLength) {< len; i++) {<= 0.1) { * new array.
1611 < fullLength) {< len; i++) {<= 0.1) { * @returns {Array} - A new array item with modified items.
1612 < fullLength) {< len; i++) {<= 0.1) { */
1613 < fullLength) {< len; i++) {<= 0.1) { H.map = function(arr, fn) {
1614 < fullLength) {< len; i++) {<= 0.1) { var results = [],
1615 < fullLength) {< len; i++) {<= 0.1) { i = 0,
1616 < fullLength) {< len; i++) {<= 0.1) { len = arr.length;
1617  
1618 < fullLength) {< len; i++) {<= 0.1) { for (; i < len; i++) {
1619 < fullLength) {< len; i++) {<= 0.1) { results[i] = fn.call(arr[i], arr[i], i, arr);
1620 < fullLength) {< len; i++) {<= 0.1) { }
1621  
1622 < fullLength) {< len; i++) {<= 0.1) { return results;
1623 < fullLength) {< len; i++) {<= 0.1) { };
1624  
1625 < fullLength) {< len; i++) {<= 0.1) { /**
1626 < fullLength) {< len; i++) {<= 0.1) { * Get the element's offset position, corrected for `overflow: auto`.
1627 < fullLength) {< len; i++) {<= 0.1) { *
1628 < fullLength) {< len; i++) {<= 0.1) { * @function #offset
1629 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1630 < fullLength) {< len; i++) {<= 0.1) { * @param {HTMLDOMElement} el - The HTML element.
1631 < fullLength) {< len; i++) {<= 0.1) { * @returns {Object} An object containing `left` and `top` properties for the
1632 < fullLength) {< len; i++) {<= 0.1) { * position in the page.
1633 < fullLength) {< len; i++) {<= 0.1) { */
1634 < fullLength) {< len; i++) {<= 0.1) { H.offset = function(el) {
1635 < fullLength) {< len; i++) {<= 0.1) { var docElem = doc.documentElement,
1636 < fullLength) {< len; i++) {<= 0.1) { box = el.getBoundingClientRect();
1637  
1638 < fullLength) {< len; i++) {<= 0.1) { return {
1639 < fullLength) {< len; i++) {<= 0.1) { top: box.top + (win.pageYOffset || docElem.scrollTop) -
1640 < fullLength) {< len; i++) {<= 0.1) { (docElem.clientTop || 0),
1641 < fullLength) {< len; i++) {<= 0.1) { left: box.left + (win.pageXOffset || docElem.scrollLeft) -
1642 < fullLength) {< len; i++) {<= 0.1) { (docElem.clientLeft || 0)
1643 < fullLength) {< len; i++) {<= 0.1) { };
1644 < fullLength) {< len; i++) {<= 0.1) { };
1645  
1646 < fullLength) {< len; i++) {<= 0.1) { /**
1647 < fullLength) {< len; i++) {<= 0.1) { * Stop running animation.
1648 < fullLength) {< len; i++) {<= 0.1) { *
1649 < fullLength) {< len; i++) {<= 0.1) { * @todo A possible extension to this would be to stop a single property, when
1650 < fullLength) {< len; i++) {<= 0.1) { * we want to continue animating others. Then assign the prop to the timer
1651 < fullLength) {< len; i++) {<= 0.1) { * in the Fx.run method, and check for the prop here. This would be an
1652 < fullLength) {< len; i++) {<= 0.1) { * improvement in all cases where we stop the animation from .attr. Instead of
1653 < fullLength) {< len; i++) {<= 0.1) { * stopping everything, we can just stop the actual attributes we're setting.
1654 < fullLength) {< len; i++) {<= 0.1) { *
1655 < fullLength) {< len; i++) {<= 0.1) { * @function #stop
1656 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1657 < fullLength) {< len; i++) {<= 0.1) { * @param {SVGElement} el - The SVGElement to stop animation on.
1658 < fullLength) {< len; i++) {<= 0.1) { * @param {string} [prop] - The property to stop animating. If given, the stop
1659 < fullLength) {< len; i++) {<= 0.1) { * method will stop a single property from animating, while others continue.
1660 < fullLength) {< len; i++) {<= 0.1) { * @returns {void}
1661 < fullLength) {< len; i++) {<= 0.1) { */
1662 < fullLength) {< len; i++) {<= 0.1) { H.stop = function(el, prop) {
1663  
1664 < fullLength) {< len; i++) {<= 0.1) { var i = timers.length;
1665  
1666 < fullLength) {< len; i++) {<= 0.1) { // Remove timers related to this element (#4519)
1667 < fullLength) {< len; i++) {<= 0.1) { while (i--) {
1668 < fullLength) {< len; i++) {<= 0.1) { if (timers[i].elem === el && (!prop || prop === timers[i].prop)) {
1669 < fullLength) {< len; i++) {<= 0.1) { timers[i].stopped = true; // #4667
1670 < fullLength) {< len; i++) {<= 0.1) { }
1671 < fullLength) {< len; i++) {<= 0.1) { }
1672 < fullLength) {< len; i++) {<= 0.1) { };
1673  
1674 < fullLength) {< len; i++) {<= 0.1) { /**
1675 < fullLength) {< len; i++) {<= 0.1) { * Iterate over an array.
1676 < fullLength) {< len; i++) {<= 0.1) { *
1677 < fullLength) {< len; i++) {<= 0.1) { * @function #each
1678 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1679 < fullLength) {< len; i++) {<= 0.1) { * @param {Array} arr - The array to iterate over.
1680 < fullLength) {< len; i++) {<= 0.1) { * @param {Function} fn - The iterator callback. It passes three arguments:
1681 < fullLength) {< len; i++) {<= 0.1) { * * item - The array item.
1682 < fullLength) {< len; i++) {<= 0.1) { * * index - The item's index in the array.
1683 < fullLength) {< len; i++) {<= 0.1) { * * arr - The array that each is being applied to.
1684 < fullLength) {< len; i++) {<= 0.1) { * @param {Object} [ctx] The context.
1685 < fullLength) {< len; i++) {<= 0.1) { */
1686 < fullLength) {< len; i++) {<= 0.1) { H.each = function(arr, fn, ctx) { // modern browsers
1687 < fullLength) {< len; i++) {<= 0.1) { return Array.prototype.forEach.call(arr, fn, ctx);
1688 < fullLength) {< len; i++) {<= 0.1) { };
1689  
1690 < fullLength) {< len; i++) {<= 0.1) { /**
1691 < fullLength) {< len; i++) {<= 0.1) { * Iterate over object key pairs in an object.
1692 < fullLength) {< len; i++) {<= 0.1) { *
1693 < fullLength) {< len; i++) {<= 0.1) { * @function #objectEach
1694 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1695 < fullLength) {< len; i++) {<= 0.1) { * @param {Object} obj - The object to iterate over.
1696 < fullLength) {< len; i++) {<= 0.1) { * @param {Function} fn - The iterator callback. It passes three arguments:
1697 < fullLength) {< len; i++) {<= 0.1) { * * value - The property value.
1698 < fullLength) {< len; i++) {<= 0.1) { * * key - The property key.
1699 < fullLength) {< len; i++) {<= 0.1) { * * obj - The object that objectEach is being applied to.
1700 < fullLength) {< len; i++) {<= 0.1) { * @param {Object} ctx The context
1701 < fullLength) {< len; i++) {<= 0.1) { */
1702 < fullLength) {< len; i++) {<= 0.1) { H.objectEach = function(obj, fn, ctx) {
1703 < fullLength) {< len; i++) {<= 0.1) { for (var key in obj) {
1704 < fullLength) {< len; i++) {<= 0.1) { if (obj.hasOwnProperty(key)) {
1705 < fullLength) {< len; i++) {<= 0.1) { fn.call(ctx, obj[key], key, obj);
1706 < fullLength) {< len; i++) {<= 0.1) { }
1707 < fullLength) {< len; i++) {<= 0.1) { }
1708 < fullLength) {< len; i++) {<= 0.1) { };
1709  
1710 < fullLength) {< len; i++) {<= 0.1) { /**
1711 < fullLength) {< len; i++) {<= 0.1) { * Add an event listener.
1712 < fullLength) {< len; i++) {<= 0.1) { *
1713 < fullLength) {< len; i++) {<= 0.1) { * @function #addEvent
1714 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1715 < fullLength) {< len; i++) {<= 0.1) { * @param {Object} el - The element or object to add a listener to. It can be a
1716 < fullLength) {< len; i++) {<= 0.1) { * {@link HTMLDOMElement}, an {@link SVGElement} or any other object.
1717 < fullLength) {< len; i++) {<= 0.1) { * @param {String} type - The event type.
1718 < fullLength) {< len; i++) {<= 0.1) { * @param {Function} fn - The function callback to execute when the event is
1719 < fullLength) {< len; i++) {<= 0.1) { * fired.
1720 < fullLength) {< len; i++) {<= 0.1) { * @returns {Function} A callback function to remove the added event.
1721 < fullLength) {< len; i++) {<= 0.1) { */
1722 < fullLength) {< len; i++) {<= 0.1) { H.addEvent = function(el, type, fn) {
1723  
1724 < fullLength) {< len; i++) {<= 0.1) { var events = el.hcEvents = el.hcEvents || {};
1725  
1726 < fullLength) {< len; i++) {<= 0.1) { function wrappedFn(e) {
1727 < fullLength) {< len; i++) {<= 0.1) { e.target = e.srcElement || win; // #2820
1728 < fullLength) {< len; i++) {<= 0.1) { fn.call(el, e);
1729 < fullLength) {< len; i++) {<= 0.1) { }
1730  
1731 < fullLength) {< len; i++) {<= 0.1) { // Handle DOM events in modern browsers
1732 < fullLength) {< len; i++) {<= 0.1) { if (el.addEventListener) {
1733 < fullLength) {< len; i++) {<= 0.1) { el.addEventListener(type, fn, false);
1734  
1735 < fullLength) {< len; i++) {<= 0.1) { // Handle old IE implementation
1736 < fullLength) {< len; i++) {<= 0.1) { } else if (el.attachEvent) {
1737  
1738 < fullLength) {< len; i++) {<= 0.1) { if (!el.hcEventsIE) {
1739 < fullLength) {< len; i++) {<= 0.1) { el.hcEventsIE = {};
1740 < fullLength) {< len; i++) {<= 0.1) { }
1741  
1742 < fullLength) {< len; i++) {<= 0.1) { // Link wrapped fn with original fn, so we can get this in removeEvent
1743 < fullLength) {< len; i++) {<= 0.1) { el.hcEventsIE[fn.toString()] = wrappedFn;
1744  
1745 < fullLength) {< len; i++) {<= 0.1) { el.attachEvent('on' + type, wrappedFn);
1746 < fullLength) {< len; i++) {<= 0.1) { }
1747  
1748 < fullLength) {< len; i++) {<= 0.1) { if (!events[type]) {
1749 < fullLength) {< len; i++) {<= 0.1) { events[type] = [];
1750 < fullLength) {< len; i++) {<= 0.1) { }
1751  
1752 < fullLength) {< len; i++) {<= 0.1) { events[type].push(fn);
1753  
1754 < fullLength) {< len; i++) {<= 0.1) { // Return a function that can be called to remove this event.
1755 < fullLength) {< len; i++) {<= 0.1) { return function() {
1756 < fullLength) {< len; i++) {<= 0.1) { H.removeEvent(el, type, fn);
1757 < fullLength) {< len; i++) {<= 0.1) { };
1758 < fullLength) {< len; i++) {<= 0.1) { };
1759  
1760 < fullLength) {< len; i++) {<= 0.1) { /**
1761 < fullLength) {< len; i++) {<= 0.1) { * Remove an event that was added with {@link Highcharts#addEvent}.
1762 < fullLength) {< len; i++) {<= 0.1) { *
1763 < fullLength) {< len; i++) {<= 0.1) { * @function #removeEvent
1764 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1765 < fullLength) {< len; i++) {<= 0.1) { * @param {Object} el - The element to remove events on.
1766 < fullLength) {< len; i++) {<= 0.1) { * @param {String} [type] - The type of events to remove. If undefined, all
1767 < fullLength) {< len; i++) {<= 0.1) { * events are removed from the element.
1768 < fullLength) {< len; i++) {<= 0.1) { * @param {Function} [fn] - The specific callback to remove. If undefined, all
1769 < fullLength) {< len; i++) {<= 0.1) { * events that match the element and optionally the type are removed.
1770 < fullLength) {< len; i++) {<= 0.1) { * @returns {void}
1771 < fullLength) {< len; i++) {<= 0.1) { */
1772 < fullLength) {< len; i++) {<= 0.1) { H.removeEvent = function(el, type, fn) {
1773  
1774 < fullLength) {< len; i++) {<= 0.1) { var events,
1775 < fullLength) {< len; i++) {<= 0.1) { hcEvents = el.hcEvents,
1776 < fullLength) {< len; i++) {<= 0.1) { index;
1777  
1778 < fullLength) {< len; i++) {<= 0.1) { function removeOneEvent(type, fn) {
1779 < fullLength) {< len; i++) {<= 0.1) { if (el.removeEventListener) {
1780 < fullLength) {< len; i++) {<= 0.1) { el.removeEventListener(type, fn, false);
1781 < fullLength) {< len; i++) {<= 0.1) { } else if (el.attachEvent) {
1782 < fullLength) {< len; i++) {<= 0.1) { fn = el.hcEventsIE[fn.toString()];
1783 < fullLength) {< len; i++) {<= 0.1) { el.detachEvent('on' + type, fn);
1784 < fullLength) {< len; i++) {<= 0.1) { }
1785 < fullLength) {< len; i++) {<= 0.1) { }
1786  
1787 < fullLength) {< len; i++) {<= 0.1) { function removeAllEvents() {
1788 < fullLength) {< len; i++) {<= 0.1) { var types,
1789 < fullLength) {< len; i++) {<= 0.1) { len;
1790  
1791 < fullLength) {< len; i++) {<= 0.1) { if (!el.nodeName) {
1792 < fullLength) {< len; i++) {<= 0.1) { return; // break on non-DOM events
1793 < fullLength) {< len; i++) {<= 0.1) { }
1794  
1795 < fullLength) {< len; i++) {<= 0.1) { if (type) {
1796 < fullLength) {< len; i++) {<= 0.1) { types = {};
1797 < fullLength) {< len; i++) {<= 0.1) { types[type] = true;
1798 < fullLength) {< len; i++) {<= 0.1) { } else {
1799 < fullLength) {< len; i++) {<= 0.1) { types = hcEvents;
1800 < fullLength) {< len; i++) {<= 0.1) { }
1801  
1802 < fullLength) {< len; i++) {<= 0.1) { H.objectEach(types, function(val, n) {
1803 < fullLength) {< len; i++) {<= 0.1) { if (hcEvents[n]) {
1804 < fullLength) {< len; i++) {<= 0.1) { len = hcEvents[n].length;
1805 < fullLength) {< len; i++) {<= 0.1) { while (len--) {
1806 < fullLength) {< len; i++) {<= 0.1) { removeOneEvent(n, hcEvents[n][len]);
1807 < fullLength) {< len; i++) {<= 0.1) { }
1808 < fullLength) {< len; i++) {<= 0.1) { }
1809 < fullLength) {< len; i++) {<= 0.1) { });
1810 < fullLength) {< len; i++) {<= 0.1) { }
1811  
1812 < fullLength) {< len; i++) {<= 0.1) { if (hcEvents) {
1813 < fullLength) {< len; i++) {<= 0.1) { if (type) {
1814 < fullLength) {< len; i++) {<= 0.1) { events = hcEvents[type] || [];
1815 < fullLength) {< len; i++) {<= 0.1) { if (fn) {
1816 < fullLength) {< len; i++) {<= 0.1) { index = H.inArray(fn, events);
1817 < fullLength) {< len; i++) {<= 0.1) { if (index > -1) {
1818 < fullLength) {< len; i++) {<= 0.1) { events.splice(index, 1);
1819 < fullLength) {< len; i++) {<= 0.1) { hcEvents[type] = events;
1820 < fullLength) {< len; i++) {<= 0.1) { }
1821 < fullLength) {< len; i++) {<= 0.1) { removeOneEvent(type, fn);
1822  
1823 < fullLength) {< len; i++) {<= 0.1) { } else {
1824 < fullLength) {< len; i++) {<= 0.1) { removeAllEvents();
1825 < fullLength) {< len; i++) {<= 0.1) { hcEvents[type] = [];
1826 < fullLength) {< len; i++) {<= 0.1) { }
1827 < fullLength) {< len; i++) {<= 0.1) { } else {
1828 < fullLength) {< len; i++) {<= 0.1) { removeAllEvents();
1829 < fullLength) {< len; i++) {<= 0.1) { el.hcEvents = {};
1830 < fullLength) {< len; i++) {<= 0.1) { }
1831 < fullLength) {< len; i++) {<= 0.1) { }
1832 < fullLength) {< len; i++) {<= 0.1) { };
1833  
1834 < fullLength) {< len; i++) {<= 0.1) { /**
1835 < fullLength) {< len; i++) {<= 0.1) { * Fire an event that was registered with {@link Highcharts#addEvent}.
1836 < fullLength) {< len; i++) {<= 0.1) { *
1837 < fullLength) {< len; i++) {<= 0.1) { * @function #fireEvent
1838 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1839 < fullLength) {< len; i++) {<= 0.1) { * @param {Object} el - The object to fire the event on. It can be a
1840 < fullLength) {< len; i++) {<= 0.1) { * {@link HTMLDOMElement}, an {@link SVGElement} or any other object.
1841 < fullLength) {< len; i++) {<= 0.1) { * @param {String} type - The type of event.
1842 < fullLength) {< len; i++) {<= 0.1) { * @param {Object} [eventArguments] - Custom event arguments that are passed on
1843 < fullLength) {< len; i++) {<= 0.1) { * as an argument to the event handler.
1844 < fullLength) {< len; i++) {<= 0.1) { * @param {Function} [defaultFunction] - The default function to execute if the
1845 < fullLength) {< len; i++) {<= 0.1) { * other listeners haven't returned false.
1846 < fullLength) {< len; i++) {<= 0.1) { * @returns {void}
1847 < fullLength) {< len; i++) {<= 0.1) { */
1848 < fullLength) {< len; i++) {<= 0.1) { H.fireEvent = function(el, type, eventArguments, defaultFunction) {
1849 < fullLength) {< len; i++) {<= 0.1) { var e,
1850 < fullLength) {< len; i++) {<= 0.1) { hcEvents = el.hcEvents,
1851 < fullLength) {< len; i++) {<= 0.1) { events,
1852 < fullLength) {< len; i++) {<= 0.1) { len,
1853 < fullLength) {< len; i++) {<= 0.1) { i,
1854 < fullLength) {< len; i++) {<= 0.1) { fn;
1855  
1856 < fullLength) {< len; i++) {<= 0.1) { eventArguments = eventArguments || {};
1857  
1858 < fullLength) {< len; i++) {<= 0.1) { if (doc.createEvent && (el.dispatchEvent || el.fireEvent)) {
1859 < fullLength) {< len; i++) {<= 0.1) { e = doc.createEvent('Events');
1860 < fullLength) {< len; i++) {<= 0.1) { e.initEvent(type, true, true);
1861 < fullLength) {< len; i++) {<= 0.1) { //e.target = el;
1862  
1863 < fullLength) {< len; i++) {<= 0.1) { H.extend(e, eventArguments);
1864  
1865 < fullLength) {< len; i++) {<= 0.1) { if (el.dispatchEvent) {
1866 < fullLength) {< len; i++) {<= 0.1) { el.dispatchEvent(e);
1867 < fullLength) {< len; i++) {<= 0.1) { } else {
1868 < fullLength) {< len; i++) {<= 0.1) { el.fireEvent(type, e);
1869 < fullLength) {< len; i++) {<= 0.1) { }
1870  
1871 < fullLength) {< len; i++) {<= 0.1) { } else if (hcEvents) {
1872  
1873 < fullLength) {< len; i++) {<= 0.1) { events = hcEvents[type] || [];
1874 < fullLength) {< len; i++) {<= 0.1) { len = events.length;
1875  
1876 < fullLength) {< len; i++) {<= 0.1) { if (!eventArguments.target) { // We're running a custom event
1877  
1878 < fullLength) {< len; i++) {<= 0.1) { H.extend(eventArguments, {
1879 < fullLength) {< len; i++) {<= 0.1) { // Attach a simple preventDefault function to skip default
1880 < fullLength) {< len; i++) {<= 0.1) { // handler if called. The built-in defaultPrevented property is
1881 < fullLength) {< len; i++) {<= 0.1) { // not overwritable (#5112)
1882 < fullLength) {< len; i++) {<= 0.1) { preventDefault: function() {
1883 < fullLength) {< len; i++) {<= 0.1) { eventArguments.defaultPrevented = true;
1884 < fullLength) {< len; i++) {<= 0.1) { },
1885 < fullLength) {< len; i++) {<= 0.1) { // Setting target to native events fails with clicking the
1886 < fullLength) {< len; i++) {<= 0.1) { // zoom-out button in Chrome.
1887 < fullLength) {< len; i++) {<= 0.1) { target: el,
1888 < fullLength) {< len; i++) {<= 0.1) { // If the type is not set, we're running a custom event (#2297).
1889 < fullLength) {< len; i++) {<= 0.1) { // If it is set, we're running a browser event, and setting it
1890 < fullLength) {< len; i++) {<= 0.1) { // will cause en error in IE8 (#2465).
1891 < fullLength) {< len; i++) {<= 0.1) { type: type
1892 < fullLength) {< len; i++) {<= 0.1) { });
1893 < fullLength) {< len; i++) {<= 0.1) { }
1894  
1895  
1896 < fullLength) {< len; i++) {<= 0.1) { for (i = 0; i < len; i++) {
1897 < fullLength) {< len; i++) {<= 0.1) { fn = events[i];
1898  
1899 < fullLength) {< len; i++) {<= 0.1) { // If the event handler return false, prevent the default handler
1900 < fullLength) {< len; i++) {<= 0.1) { // from executing
1901 < fullLength) {< len; i++) {<= 0.1) { if (fn && fn.call(el, eventArguments) === false) {
1902 < fullLength) {< len; i++) {<= 0.1) { eventArguments.preventDefault();
1903 < fullLength) {< len; i++) {<= 0.1) { }
1904 < fullLength) {< len; i++) {<= 0.1) { }
1905 < fullLength) {< len; i++) {<= 0.1) { }
1906  
1907 < fullLength) {< len; i++) {<= 0.1) { // Run the default if not prevented
1908 < fullLength) {< len; i++) {<= 0.1) { if (defaultFunction && !eventArguments.defaultPrevented) {
1909 < fullLength) {< len; i++) {<= 0.1) { defaultFunction(eventArguments);
1910 < fullLength) {< len; i++) {<= 0.1) { }
1911 < fullLength) {< len; i++) {<= 0.1) { };
1912  
1913 < fullLength) {< len; i++) {<= 0.1) { /**
1914 < fullLength) {< len; i++) {<= 0.1) { * An animation configuration. Animation configurations can also be defined as
1915 < fullLength) {< len; i++) {<= 0.1) { * booleans, where `false` turns off animation and `true` defaults to a duration
1916 < fullLength) {< len; i++) {<= 0.1) { * of 500ms.
1917 < fullLength) {< len; i++) {<= 0.1) { * @typedef {Object} AnimationOptions
1918 < fullLength) {< len; i++) {<= 0.1) { * @property {Number} duration - The animation duration in milliseconds.
1919 < fullLength) {< len; i++) {<= 0.1) { * @property {String} [easing] - The name of an easing function as defined on
1920 < fullLength) {< len; i++) {<= 0.1) { * the `Math` object.
1921 < fullLength) {< len; i++) {<= 0.1) { * @property {Function} [complete] - A callback function to exectute when the
1922 < fullLength) {< len; i++) {<= 0.1) { * animation finishes.
1923 < fullLength) {< len; i++) {<= 0.1) { * @property {Function} [step] - A callback function to execute on each step of
1924 < fullLength) {< len; i++) {<= 0.1) { * each attribute or CSS property that's being animated. The first argument
1925 < fullLength) {< len; i++) {<= 0.1) { * contains information about the animation and progress.
1926 < fullLength) {< len; i++) {<= 0.1) { */
1927  
1928  
1929 < fullLength) {< len; i++) {<= 0.1) { /**
1930 < fullLength) {< len; i++) {<= 0.1) { * The global animate method, which uses Fx to create individual animators.
1931 < fullLength) {< len; i++) {<= 0.1) { *
1932 < fullLength) {< len; i++) {<= 0.1) { * @function #animate
1933 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
1934 < fullLength) {< len; i++) {<= 0.1) { * @param {HTMLDOMElement|SVGElement} el - The element to animate.
1935 < fullLength) {< len; i++) {<= 0.1) { * @param {Object} params - An object containing key-value pairs of the
1936 < fullLength) {< len; i++) {<= 0.1) { * properties to animate. Supports numeric as pixel-based CSS properties
1937 < fullLength) {< len; i++) {<= 0.1) { * for HTML objects and attributes for SVGElements.
1938 < fullLength) {< len; i++) {<= 0.1) { * @param {AnimationOptions} [opt] - Animation options.
1939 < fullLength) {< len; i++) {<= 0.1) { */
1940 < fullLength) {< len; i++) {<= 0.1) { H.animate = function(el, params, opt) {
1941 < fullLength) {< len; i++) {<= 0.1) { var start,
1942 < fullLength) {< len; i++) {<= 0.1) { unit = '',
1943 < fullLength) {< len; i++) {<= 0.1) { end,
1944 < fullLength) {< len; i++) {<= 0.1) { fx,
1945 < fullLength) {< len; i++) {<= 0.1) { args;
1946  
1947 < fullLength) {< len; i++) {<= 0.1) { if (!H.isObject(opt)) { // Number or undefined/null
1948 < fullLength) {< len; i++) {<= 0.1) { args = arguments;
1949 < fullLength) {< len; i++) {<= 0.1) { opt = {
1950 < fullLength) {< len; i++) {<= 0.1) { duration: args[2],
1951 < fullLength) {< len; i++) {<= 0.1) { easing: args[3],
1952 < fullLength) {< len; i++) {<= 0.1) { complete: args[4]
1953 < fullLength) {< len; i++) {<= 0.1) { };
1954 < fullLength) {< len; i++) {<= 0.1) { }
1955 < fullLength) {< len; i++) {<= 0.1) { if (!H.isNumber(opt.duration)) {
1956 < fullLength) {< len; i++) {<= 0.1) { opt.duration = 400;
1957 < fullLength) {< len; i++) {<= 0.1) { }
1958 < fullLength) {< len; i++) {<= 0.1) { opt.easing = typeof opt.easing === 'function' ?
1959 < fullLength) {< len; i++) {<= 0.1) { opt.easing :
1960 < fullLength) {< len; i++) {<= 0.1) { (Math[opt.easing] || Math.easeInOutSine);
1961 < fullLength) {< len; i++) {<= 0.1) { opt.curAnim = H.merge(params);
1962  
1963 < fullLength) {< len; i++) {<= 0.1) { H.objectEach(params, function(val, prop) {
1964 < fullLength) {< len; i++) {<= 0.1) { // Stop current running animation of this property
1965 < fullLength) {< len; i++) {<= 0.1) { H.stop(el, prop);
1966  
1967 < fullLength) {< len; i++) {<= 0.1) { fx = new H.Fx(el, opt, prop);
1968 < fullLength) {< len; i++) {<= 0.1) { end = null;
1969  
1970 < fullLength) {< len; i++) {<= 0.1) { if (prop === 'd') {
1971 < fullLength) {< len; i++) {<= 0.1) { fx.paths = fx.initPath(
1972 < fullLength) {< len; i++) {<= 0.1) { el,
1973 < fullLength) {< len; i++) {<= 0.1) { el.d,
1974 < fullLength) {< len; i++) {<= 0.1) { params.d
1975 < fullLength) {< len; i++) {<= 0.1) { );
1976 < fullLength) {< len; i++) {<= 0.1) { fx.toD = params.d;
1977 < fullLength) {< len; i++) {<= 0.1) { start = 0;
1978 < fullLength) {< len; i++) {<= 0.1) { end = 1;
1979 < fullLength) {< len; i++) {<= 0.1) { } else if (el.attr) {
1980 < fullLength) {< len; i++) {<= 0.1) { start = el.attr(prop);
1981 < fullLength) {< len; i++) {<= 0.1) { } else {
1982 < fullLength) {< len; i++) {<= 0.1) { start = parseFloat(H.getStyle(el, prop)) || 0;
1983 < fullLength) {< len; i++) {<= 0.1) { if (prop !== 'opacity') {
1984 < fullLength) {< len; i++) {<= 0.1) { unit = 'px';
1985 < fullLength) {< len; i++) {<= 0.1) { }
1986 < fullLength) {< len; i++) {<= 0.1) { }
1987  
1988 < fullLength) {< len; i++) {<= 0.1) { if (!end) {
1989 < fullLength) {< len; i++) {<= 0.1) { end = val;
1990 < fullLength) {< len; i++) {<= 0.1) { }
1991 < fullLength) {< len; i++) {<= 0.1) { if (end && end.match && end.match('px')) {
1992 < fullLength) {< len; i++) {<= 0.1) { end = end.replace(/px/g, ''); // #4351
1993 < fullLength) {< len; i++) {<= 0.1) { }
1994 < fullLength) {< len; i++) {<= 0.1) { fx.run(start, end, unit);
1995 < fullLength) {< len; i++) {<= 0.1) { });
1996 < fullLength) {< len; i++) {<= 0.1) { };
1997  
1998 < fullLength) {< len; i++) {<= 0.1) { /**
1999 < fullLength) {< len; i++) {<= 0.1) { * Factory to create new series prototypes.
2000 < fullLength) {< len; i++) {<= 0.1) { *
2001 < fullLength) {< len; i++) {<= 0.1) { * @function #seriesType
2002 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
2003 < fullLength) {< len; i++) {<= 0.1) { *
2004 < fullLength) {< len; i++) {<= 0.1) { * @param {String} type - The series type name.
2005 < fullLength) {< len; i++) {<= 0.1) { * @param {String} parent - The parent series type name. Use `line` to inherit
2006 < fullLength) {< len; i++) {<= 0.1) { * from the basic {@link Series} object.
2007 < fullLength) {< len; i++) {<= 0.1) { * @param {Object} options - The additional default options that is merged with
2008 < fullLength) {< len; i++) {<= 0.1) { * the parent's options.
2009 < fullLength) {< len; i++) {<= 0.1) { * @param {Object} props - The properties (functions and primitives) to set on
2010 < fullLength) {< len; i++) {<= 0.1) { * the new prototype.
2011 < fullLength) {< len; i++) {<= 0.1) { * @param {Object} [pointProps] - Members for a series-specific extension of the
2012 < fullLength) {< len; i++) {<= 0.1) { * {@link Point} prototype if needed.
2013 < fullLength) {< len; i++) {<= 0.1) { * @returns {*} - The newly created prototype as extended from {@link Series}
2014 < fullLength) {< len; i++) {<= 0.1) { * or its derivatives.
2015 < fullLength) {< len; i++) {<= 0.1) { */
2016 < fullLength) {< len; i++) {<= 0.1) { // docs: add to API + extending Highcharts
2017 < fullLength) {< len; i++) {<= 0.1) { H.seriesType = function(type, parent, options, props, pointProps) {
2018 < fullLength) {< len; i++) {<= 0.1) { var defaultOptions = H.getOptions(),
2019 < fullLength) {< len; i++) {<= 0.1) { seriesTypes = H.seriesTypes;
2020  
2021 < fullLength) {< len; i++) {<= 0.1) { if (seriesTypes[type]) {
2022 < fullLength) {< len; i++) {<= 0.1) { return H.error(27); // Series type already defined
2023 < fullLength) {< len; i++) {<= 0.1) { }
2024  
2025 < fullLength) {< len; i++) {<= 0.1) { // Merge the options
2026 < fullLength) {< len; i++) {<= 0.1) { defaultOptions.plotOptions[type] = H.merge(
2027 < fullLength) {< len; i++) {<= 0.1) { defaultOptions.plotOptions[parent],
2028 < fullLength) {< len; i++) {<= 0.1) { options
2029 < fullLength) {< len; i++) {<= 0.1) { );
2030  
2031 < fullLength) {< len; i++) {<= 0.1) { // Create the class
2032 < fullLength) {< len; i++) {<= 0.1) { seriesTypes[type] = H.extendClass(seriesTypes[parent] ||
2033 < fullLength) {< len; i++) {<= 0.1) { function() {}, props);
2034 < fullLength) {< len; i++) {<= 0.1) { seriesTypes[type].prototype.type = type;
2035  
2036 < fullLength) {< len; i++) {<= 0.1) { // Create the point class if needed
2037 < fullLength) {< len; i++) {<= 0.1) { if (pointProps) {
2038 < fullLength) {< len; i++) {<= 0.1) { seriesTypes[type].prototype.pointClass =
2039 < fullLength) {< len; i++) {<= 0.1) { H.extendClass(H.Point, pointProps);
2040 < fullLength) {< len; i++) {<= 0.1) { }
2041  
2042 < fullLength) {< len; i++) {<= 0.1) { return seriesTypes[type];
2043 < fullLength) {< len; i++) {<= 0.1) { };
2044  
2045 < fullLength) {< len; i++) {<= 0.1) { /**
2046 < fullLength) {< len; i++) {<= 0.1) { * Get a unique key for using in internal element id's and pointers. The key
2047 < fullLength) {< len; i++) {<= 0.1) { * is composed of a random hash specific to this Highcharts instance, and a
2048 < fullLength) {< len; i++) {<= 0.1) { * counter.
2049 < fullLength) {< len; i++) {<= 0.1) { * @function #uniqueKey
2050 < fullLength) {< len; i++) {<= 0.1) { * @memberOf Highcharts
2051 < fullLength) {< len; i++) {<= 0.1) { * @return {string} The key.
2052 < fullLength) {< len; i++) {<= 0.1) { * @example
2053 < fullLength) {< len; i++) {<= 0.1) { * var id = H.uniqueKey(); // => 'highcharts-x45f6hp-0'
2054 < fullLength) {< len; i++) {<= 0.1) { */
2055 < fullLength) {< len; i++) {<= 0.1) { H.uniqueKey = (function() {
2056  
2057 < fullLength) {< len; i++) {<= 0.1) { var uniqueKeyHash = Math.random().toString(36).substring(2, 9),
2058 < fullLength) {< len; i++) {<= 0.1) { idCounter = 0;
2059  
2060 < fullLength) {< len; i++) {<= 0.1) { return function() {
2061 < fullLength) {< len; i++) {<= 0.1) { return 'highcharts-' + uniqueKeyHash + '-' + idCounter++;
2062 < fullLength) {< len; i++) {<= 0.1) { };
2063 < fullLength) {< len; i++) {<= 0.1) { }());
2064  
2065 < fullLength) {< len; i++) {<= 0.1) { /**
2066 < fullLength) {< len; i++) {<= 0.1) { * Register Highcharts as a plugin in jQuery
2067 < fullLength) {< len; i++) {<= 0.1) { */
2068 < fullLength) {< len; i++) {<= 0.1) { if (win.jQuery) {
2069 < fullLength) {< len; i++) {<= 0.1) { win.jQuery.fn.highcharts = function() {
2070 < fullLength) {< len; i++) {<= 0.1) { var args = [].slice.call(arguments);
2071  
2072 < fullLength) {< len; i++) {<= 0.1) { if (this[0]) { // this[0] is the renderTo div
2073  
2074 < fullLength) {< len; i++) {<= 0.1) { // Create the chart
2075 < fullLength) {< len; i++) {<= 0.1) { if (args[0]) {
2076 < fullLength) {< len; i++) {<= 0.1) { new H[ // eslint-disable-line no-new
2077 < fullLength) {< len; i++) {<= 0.1) { // Constructor defaults to Chart
2078 < fullLength) {< len; i++) {<= 0.1) { H.isString(args[0]) ? args.shift() : 'Chart'
2079 < fullLength) {< len; i++) {<= 0.1) { ](this[0], args[0], args[1]);
2080 < fullLength) {< len; i++) {<= 0.1) { return this;
2081 < fullLength) {< len; i++) {<= 0.1) { }
2082  
2083 < fullLength) {< len; i++) {<= 0.1) { // When called without parameters or with the return argument,
2084 < fullLength) {< len; i++) {<= 0.1) { // return an existing chart
2085 < fullLength) {< len; i++) {<= 0.1) { return charts[H.attr(this[0], 'data-highcharts-chart')];
2086 < fullLength) {< len; i++) {<= 0.1) { }
2087 < fullLength) {< len; i++) {<= 0.1) { };
2088 < fullLength) {< len; i++) {<= 0.1) { }
2089  
2090  
2091 < fullLength) {< len; i++) {<= 0.1) { /**
2092 < fullLength) {< len; i++) {<= 0.1) { * Compatibility section to add support for legacy IE. This can be removed if
2093 < fullLength) {< len; i++) {<= 0.1) { * old IE support is not needed.
2094 < fullLength) {< len; i++) {<= 0.1) { */
2095 < fullLength) {< len; i++) {<= 0.1) { if (doc && !doc.defaultView) {
2096 < fullLength) {< len; i++) {<= 0.1) { H.getStyle = function(el, prop) {
2097 < fullLength) {< len; i++) {<= 0.1) { var val,
2098 < fullLength) {< len; i++) {<= 0.1) { alias = {
2099 < fullLength) {< len; i++) {<= 0.1) { width: 'clientWidth',
2100 < fullLength) {< len; i++) {<= 0.1) { height: 'clientHeight'
2101 < fullLength) {< len; i++) {<= 0.1) { }[prop];
2102  
2103 < fullLength) {< len; i++) {<= 0.1) { if (el.style[prop]) {
2104 < fullLength) {< len; i++) {<= 0.1) { return H.pInt(el.style[prop]);
2105 < fullLength) {< len; i++) {<= 0.1) { }
2106 < fullLength) {< len; i++) {<= 0.1) { if (prop === 'opacity') {
2107 < fullLength) {< len; i++) {<= 0.1) { prop = 'filter';
2108 < fullLength) {< len; i++) {<= 0.1) { }
2109  
2110 < fullLength) {< len; i++) {<= 0.1) { // Getting the rendered width and height
2111 < fullLength) {< len; i++) {<= 0.1) { if (alias) {
2112 < fullLength) {< len; i++) {<= 0.1) { el.style.zoom = 1;
2113 < fullLength) {< len; i++) {<= 0.1) { return Math.max(el[alias] - 2 * H.getStyle(el, 'padding'), 0);
2114 < fullLength) {< len; i++) {<= 0.1) { }
2115  
2116 < fullLength) {< len; i++) {<= 0.1) { val = el.currentStyle[prop.replace(/\-(\w)/g, function(a, b) {
2117 < fullLength) {< len; i++) {<= 0.1) { return b.toUpperCase();
2118 < fullLength) {< len; i++) {<= 0.1) { })];
2119 < fullLength) {< len; i++) {<= 0.1) { if (prop === 'filter') {
2120 < fullLength) {< len; i++) {<= 0.1) { val = val.replace(
2121 < fullLength) {< len; i++) {<= 0.1) { /alpha\(opacity=([0-9]+)\)/,
2122 < fullLength) {< len; i++) {<= 0.1) { function(a, b) {
2123 < fullLength) {< len; i++) {<= 0.1) { return b / 100;
2124 < fullLength) {< len; i++) {<= 0.1) { }
2125 < fullLength) {< len; i++) {<= 0.1) { );
2126 < fullLength) {< len; i++) {<= 0.1) { }
2127  
2128 < fullLength) {< len; i++) {<= 0.1) { return val === '' ? 1 : H.pInt(val);
2129 < fullLength) {< len; i++) {<= 0.1) { };
2130 < fullLength) {< len; i++) {<= 0.1) { }
2131  
2132 < fullLength) {< len; i++) {<= 0.1) { if (!Array.prototype.forEach) {
2133 < fullLength) {< len; i++) {<= 0.1) { H.each = function(arr, fn, ctx) { // legacy
2134 < fullLength) {< len; i++) {<= 0.1) { var i = 0,
2135 < fullLength) {< len; i++) {<= 0.1) { len = arr.length;
2136 < fullLength) {< len; i++) {<= 0.1) { for (; i < len; i++) {
2137 < fullLength) {< len; i++) {<= 0.1) {< len; i++) { if (fn.call(ctx, arr[i], i, arr) === false) {
2138 < fullLength) {< len; i++) {<= 0.1) {< len; i++) { return i;
2139 < fullLength) {< len; i++) {<= 0.1) {< len; i++) { }
2140 < fullLength) {< len; i++) {<= 0.1) {< len; i++) { }
2141 < fullLength) {< len; i++) {<= 0.1) {< len; i++) { };
2142 < fullLength) {< len; i++) {<= 0.1) {< len; i++) { }
2143  
2144 < fullLength) {< len; i++) {<= 0.1) {< len; i++) { if (!Array.prototype.indexOf) {
2145 < fullLength) {< len; i++) {<= 0.1) {< len; i++) { H.inArray = function(item, arr) {
2146 < fullLength) {< len; i++) {<= 0.1) {< len; i++) { var len,
2147 < fullLength) {< len; i++) {<= 0.1) {< len; i++) { i = 0;
2148  
2149 < fullLength) {< len; i++) {<= 0.1) {< len; i++) { if (arr) {
2150 < fullLength) {< len; i++) {<= 0.1) {< len; i++) { len = arr.length;
2151  
2152 < fullLength) {< len; i++) {<= 0.1) {< len; i++) { for (; i < len; i++) {
2153 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) { if (arr[i] === item) {
2154 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) { return i;
2155 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) { }
2156 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) { }
2157 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) { }
2158  
2159 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) { return -1;
2160 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) { };
2161 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) { }
2162  
2163 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) { if (!Array.prototype.filter) {
2164 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) { H.grep = function(elements, fn) {
2165 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) { var ret = [],
2166 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) { i = 0,
2167 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) { length = elements.length;
2168  
2169 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) { for (; i < length; i++) {
2170 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) { if (fn(elements[i], i)) {
2171 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) { ret.push(elements[i]);
2172 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) { }
2173 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) { }
2174  
2175 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) { return ret;
2176 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) { };
2177 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) { }
2178  
2179 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) { if (!Array.prototype.find) {
2180 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) { H.find = function(arr, fn) {
2181 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) { var i,
2182 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) { length = arr.length;
2183  
2184 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) { for (i = 0; i < length; i++) {
2185 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (fn(arr[i], i)) {
2186 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return arr[i];
2187 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2188 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2189 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { };
2190 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2191  
2192 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //--- End compatibility section ---
2193  
2194 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }(Highcharts));
2195 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { (function(H) {
2196 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2197 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * (c) 2010-2017 Torstein Honsi
2198 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
2199 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * License: www.highcharts.com/license
2200 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2201 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var each = H.each,
2202 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { isNumber = H.isNumber,
2203 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { map = H.map,
2204 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { merge = H.merge,
2205 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { pInt = H.pInt;
2206  
2207 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2208 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @typedef {string} ColorString
2209 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * A valid color to be parsed and handled by Highcharts. Highcharts internally
2210 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * supports hex colors like `#ffffff`, rgb colors like `rgb(255,255,255)` and
2211 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * rgba colors like `rgba(255,255,255,1)`. Other colors may be supported by the
2212 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * browsers and displayed correctly, but Highcharts is not able to process them
2213 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * and apply concepts like opacity and brightening.
2214 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2215 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2216 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Handle color operations. The object methods are chainable.
2217 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {String} input The input color in either rbga or hex format
2218 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2219 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { H.Color = function(input) {
2220 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Backwards compatibility, allow instanciation without new
2221 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (!(this instanceof H.Color)) {
2222 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return new H.Color(input);
2223 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2224 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Initialize
2225 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.init(input);
2226 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { };
2227 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { H.Color.prototype = {
2228  
2229 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Collection of parsers. This can be extended from the outside by pushing parsers
2230 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // to Highcharts.Color.prototype.parsers.
2231 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { parsers: [{
2232 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // RGBA color
2233 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { regex: /rgba\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]?(?:\.[0-9]+)?)\s*\)/,
2234 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { parse: function(result) {
2235 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return [pInt(result[1]), pInt(result[2]), pInt(result[3]), parseFloat(result[4], 10)];
2236 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2237 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }, {
2238 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // RGB color
2239 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { regex: /rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/,
2240 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { parse: function(result) {
2241 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return [pInt(result[1]), pInt(result[2]), pInt(result[3]), 1];
2242 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2243 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }],
2244  
2245 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Collection of named colors. Can be extended from the outside by adding
2246 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // colors to Highcharts.Color.prototype.names.
2247 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { names: {
2248 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { none: 'rgba(255,255,255,0)',
2249 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { white: '#ffffff',
2250 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { black: '#000000'
2251 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2252  
2253 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2254 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Parse the input color to rgba array
2255 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {String} input
2256 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2257 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { init: function(input) {
2258 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var result,
2259 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rgba,
2260 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { i,
2261 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { parser,
2262 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { len;
2263  
2264 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.input = input = this.names[
2265 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { input && input.toLowerCase ?
2266 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { input.toLowerCase() :
2267 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ''
2268 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ] || input;
2269  
2270 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Gradients
2271 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (input && input.stops) {
2272 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.stops = map(input.stops, function(stop) {
2273 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return new H.Color(stop[1]);
2274 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
2275  
2276 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Solid colors
2277 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else {
2278  
2279 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Check if it's possible to do bitmasking instead of regex
2280 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (input && input[0] === '#') {
2281  
2282 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { len = input.length;
2283 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { input = parseInt(input.substr(1), 16);
2284  
2285 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Handle long-form, e.g. #AABBCC
2286 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (len === 7) {
2287  
2288 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rgba = [
2289 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { (input & 0xFF0000) >> 16,
2290 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { (input & 0xFF00) >> 8,
2291 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { (input & 0xFF),
2292 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 1
2293 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ];
2294  
2295 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Handle short-form, e.g. #ABC
2296 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // In short form, the value is assumed to be the same
2297 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // for both nibbles for each component. e.g. #ABC = #AABBCC
2298 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else if (len === 4) {
2299  
2300 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rgba = [
2301 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ((input & 0xF00) >> 4) | (input & 0xF00) >> 8,
2302 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ((input & 0xF0) >> 4) | (input & 0xF0),
2303 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ((input & 0xF) << 4) | (input & 0xF),
2304 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 1
2305 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ];
2306 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2307 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2308  
2309 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Otherwise, check regex parsers
2310 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (!rgba) {
2311 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { i = this.parsers.length;
2312 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { while (i-- && !rgba) {
2313 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { parser = this.parsers[i];
2314 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { result = parser.regex.exec(input);
2315 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (result) {
2316 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rgba = parser.parse(result);
2317 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2318 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2319 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2320 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2321 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.rgba = rgba || [];
2322 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2323  
2324 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2325 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Return the color a specified format
2326 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {String} format
2327 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2328 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { get: function(format) {
2329 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var input = this.input,
2330 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rgba = this.rgba,
2331 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ret;
2332  
2333 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (this.stops) {
2334 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ret = merge(input);
2335 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ret.stops = [].concat(ret.stops);
2336 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { each(this.stops, function(stop, i) {
2337 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ret.stops[i] = [ret.stops[i][0], stop.get(format)];
2338 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
2339  
2340 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // it's NaN if gradient colors on a column chart
2341 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else if (rgba && isNumber(rgba[0])) {
2342 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (format === 'rgb' || (!format && rgba[3] === 1)) {
2343 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ret = 'rgb(' + rgba[0] + ',' + rgba[1] + ',' + rgba[2] + ')';
2344 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else if (format === 'a') {
2345 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ret = rgba[3];
2346 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else {
2347 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ret = 'rgba(' + rgba.join(',') + ')';
2348 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2349 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else {
2350 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ret = input;
2351 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2352 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return ret;
2353 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2354  
2355 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2356 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Brighten the color
2357 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {Number} alpha
2358 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2359 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { brighten: function(alpha) {
2360 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var i,
2361 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rgba = this.rgba;
2362  
2363 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (this.stops) {
2364 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { each(this.stops, function(stop) {
2365 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { stop.brighten(alpha);
2366 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
2367  
2368 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else if (isNumber(alpha) && alpha !== 0) {
2369 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { for (i = 0; i < 3; i++) {
2370 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rgba[i] += pInt(alpha * 255);
2371  
2372 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (rgba[i] < 0) {
2373 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rgba[i] = 0;
2374 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2375 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (rgba[i] > 255) {
2376 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rgba[i] = 255;
2377 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2378 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2379 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2380 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this;
2381 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2382  
2383 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2384 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Set the color's opacity to a given alpha value
2385 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {Number} alpha
2386 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2387 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { setOpacity: function(alpha) {
2388 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.rgba[3] = alpha;
2389 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this;
2390 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2391  
2392 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /*
2393 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Return an intermediate color between two colors.
2394 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
2395 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {Highcharts.Color} to
2396 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * The color object to tween to.
2397 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {Number} pos
2398 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * The intermediate position, where 0 is the from color (current
2399 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * color item), and 1 is the `to` color.
2400 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
2401 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @return {String}
2402 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * The intermediate color in rgba notation.
2403 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2404 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { tweenTo: function(to, pos) {
2405 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Check for has alpha, because rgba colors perform worse due to lack of
2406 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // support in WebKit.
2407 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var from = this,
2408 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { hasAlpha,
2409 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ret;
2410  
2411 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Unsupported color, return to-color (#3920)
2412 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (!to.rgba.length) {
2413 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ret = to.input || 'none';
2414  
2415 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Interpolate
2416 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else {
2417 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { from = from.rgba;
2418 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { to = to.rgba;
2419 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { hasAlpha = (to[3] !== 1 || from[3] !== 1);
2420 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ret = (hasAlpha ? 'rgba(' : 'rgb(') +
2421 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { Math.round(to[0] + (from[0] - to[0]) * (1 - pos)) + ',' +
2422 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { Math.round(to[1] + (from[1] - to[1]) * (1 - pos)) + ',' +
2423 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { Math.round(to[2] + (from[2] - to[2]) * (1 - pos)) +
2424 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { (hasAlpha ?
2425 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { (',' + (to[3] + (from[3] - to[3]) * (1 - pos))) :
2426 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { '') + ')';
2427 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2428 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return ret;
2429 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2430 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { };
2431 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { H.color = function(input) {
2432 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return new H.Color(input);
2433 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { };
2434  
2435 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }(Highcharts));
2436 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { (function(H) {
2437 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2438 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * (c) 2010-2017 Torstein Honsi
2439 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
2440 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * License: www.highcharts.com/license
2441 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2442 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var color = H.color,
2443 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { each = H.each,
2444 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { getTZOffset = H.getTZOffset,
2445 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { isTouchDevice = H.isTouchDevice,
2446 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { merge = H.merge,
2447 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { pick = H.pick,
2448 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { svg = H.svg,
2449 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { win = H.win;
2450  
2451 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /* ****************************************************************************
2452 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Handle the options *
2453 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *****************************************************************************/
2454 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { H.defaultOptions = {
2455  
2456 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { colors: '#7cb5ec #434348 #90ed7d #f7a35c #8085e9 #f15c80 #e4d354 #2b908f #f45b5b #91e8e1'.split(' '),
2457  
2458 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { symbols: ['circle', 'diamond', 'square', 'triangle', 'triangle-down'],
2459 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { lang: {
2460 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { loading: 'Loading...',
2461 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { months: [
2462 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'January', 'February', 'March', 'April', 'May', 'June', 'July',
2463 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'August', 'September', 'October', 'November', 'December'
2464 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ],
2465 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { shortMonths: [
2466 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul',
2467 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'
2468 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ],
2469 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { weekdays: [
2470 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'Sunday', 'Monday', 'Tuesday', 'Wednesday',
2471 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'Thursday', 'Friday', 'Saturday'
2472 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ],
2473 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // invalidDate: '',
2474 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { decimalPoint: '.',
2475 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { numericSymbols: ['k', 'M', 'G', 'T', 'P', 'E'], // SI prefixes used in axis labels
2476 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { resetZoom: 'Reset zoom',
2477 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { resetZoomTitle: 'Reset zoom level 1:1',
2478 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { thousandsSep: ' '
2479 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2480 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { global: {
2481 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { useUTC: true,
2482 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //timezoneOffset: 0,
2483  
2484 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { VMLRadialGradientURL: 'http://code.highcharts.com/5.0.12/gfx/vml-radial-gradient.png'
2485  
2486 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2487 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { chart: {
2488 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //animation: true,
2489 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //alignTicks: false,
2490 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //reflow: true,
2491 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //className: null,
2492 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //events: { load, selection },
2493 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //margin: [null],
2494 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //marginTop: null,
2495 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //marginRight: null,
2496 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //marginBottom: null,
2497 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //marginLeft: null,
2498 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { borderRadius: 0,
2499  
2500 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { defaultSeriesType: 'line',
2501 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ignoreHiddenSeries: true,
2502 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //inverted: false,
2503 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { spacing: [10, 10, 15, 10],
2504 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //spacingTop: 10,
2505 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //spacingRight: 10,
2506 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //spacingBottom: 15,
2507 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //spacingLeft: 10,
2508 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //zoomType: ''
2509 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { resetZoomButton: {
2510 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { theme: {
2511 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { zIndex: 20
2512 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2513 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { position: {
2514 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { align: 'right',
2515 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { x: -10,
2516 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //verticalAlign: 'top',
2517 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { y: 10
2518 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2519 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // relativeTo: 'plot'
2520 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2521 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { width: null,
2522 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { height: null,
2523  
2524  
2525 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { borderColor: '#335cad',
2526 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //borderWidth: 0,
2527 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //style: {
2528 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // fontFamily: '"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif', // default font
2529 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // fontSize: '12px'
2530 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //},
2531 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { backgroundColor: '#ffffff',
2532 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //plotBackgroundColor: null,
2533 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { plotBorderColor: '#cccccc'
2534 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //plotBorderWidth: 0,
2535 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //plotShadow: false
2536  
2537 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2538 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { title: {
2539 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { text: 'Chart title',
2540 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { align: 'center',
2541 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // floating: false,
2542 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { margin: 15,
2543 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // x: 0,
2544 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // verticalAlign: 'top',
2545 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // y: null,
2546 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // style: {}, // defined inline
2547 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { widthAdjust: -44
2548  
2549 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2550 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { subtitle: {
2551 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { text: '',
2552 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { align: 'center',
2553 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // floating: false
2554 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // x: 0,
2555 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // verticalAlign: 'top',
2556 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // y: null,
2557 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // style: {}, // defined inline
2558 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { widthAdjust: -44
2559 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2560  
2561 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { plotOptions: {},
2562 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { labels: {
2563 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //items: [],
2564 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { style: {
2565 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //font: defaultFont,
2566 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { position: 'absolute',
2567 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { color: '#333333'
2568 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2569 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2570 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { legend: {
2571 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { enabled: true,
2572 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { align: 'center',
2573 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //floating: false,
2574 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { layout: 'horizontal',
2575 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { labelFormatter: function() {
2576 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this.name;
2577 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2578 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //borderWidth: 0,
2579 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { borderColor: '#999999',
2580 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { borderRadius: 0,
2581 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { navigation: {
2582  
2583 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { activeColor: '#003399',
2584 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { inactiveColor: '#cccccc'
2585  
2586 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // animation: true,
2587 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // arrowSize: 12
2588 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // style: {} // text styles
2589 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2590 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // margin: 20,
2591 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // reversed: false,
2592 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // backgroundColor: null,
2593 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /*style: {
2594 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { padding: '5px'
2595 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },*/
2596  
2597 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { itemStyle: {
2598 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { color: '#333333',
2599 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { fontSize: '12px',
2600 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { fontWeight: 'bold',
2601 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { textOverflow: 'ellipsis'
2602 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2603 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { itemHoverStyle: {
2604 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //cursor: 'pointer', removed as of #601
2605 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { color: '#000000'
2606 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2607 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { itemHiddenStyle: {
2608 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { color: '#cccccc'
2609 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2610 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { shadow: false,
2611  
2612 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { itemCheckboxStyle: {
2613 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { position: 'absolute',
2614 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { width: '13px', // for IE precision
2615 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { height: '13px'
2616 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2617 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // itemWidth: undefined,
2618 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { squareSymbol: true,
2619 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // symbolRadius: 0,
2620 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // symbolWidth: 16,
2621 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { symbolPadding: 5,
2622 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { verticalAlign: 'bottom',
2623 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // width: undefined,
2624 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { x: 0,
2625 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { y: 0,
2626 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { title: {
2627 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //text: null,
2628  
2629 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { style: {
2630 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { fontWeight: 'bold'
2631 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2632  
2633 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2634 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2635  
2636 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { loading: {
2637 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // hideDuration: 100,
2638 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // showDuration: 0,
2639  
2640 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { labelStyle: {
2641 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { fontWeight: 'bold',
2642 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { position: 'relative',
2643 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { top: '45%'
2644 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2645 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { style: {
2646 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { position: 'absolute',
2647 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { backgroundColor: '#ffffff',
2648 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { opacity: 0.5,
2649 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { textAlign: 'center'
2650 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2651  
2652 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2653  
2654 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { tooltip: {
2655 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { enabled: true,
2656 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { animation: svg,
2657 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //crosshairs: null,
2658 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { borderRadius: 3,
2659 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { dateTimeLabelFormats: {
2660 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { millisecond: '%A, %b %e, %H:%M:%S.%L',
2661 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { second: '%A, %b %e, %H:%M:%S',
2662 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { minute: '%A, %b %e, %H:%M',
2663 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { hour: '%A, %b %e, %H:%M',
2664 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { day: '%A, %b %e, %Y',
2665 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { week: 'Week from %A, %b %e, %Y',
2666 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { month: '%B %Y',
2667 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { year: '%Y'
2668 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2669 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { footerFormat: '',
2670 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //formatter: defaultFormatter,
2671 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /* todo: em font-size when finished comparing against HC4
2672 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { headerFormat: '<span style="font-size: 0.85em">{point.key}</span><br/>',
2673 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2674 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { padding: 8,
2675  
2676 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //shape: 'callout',
2677 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //shared: false,
2678 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { snap: isTouchDevice ? 25 : 10,
2679  
2680 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { backgroundColor: color('#f7f7f7').setOpacity(0.85).get(),
2681 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { borderWidth: 1,
2682 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { headerFormat: '<span style="font-size: 10px">{point.key}</span><br/>',
2683 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { pointFormat: '<span style="color:{point.color}">\u25CF</span> {series.name}: <b>{point.y}</b><br/>',
2684 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { shadow: true,
2685 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { style: {
2686 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { color: '#333333',
2687 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { cursor: 'default',
2688 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { fontSize: '12px',
2689 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { pointerEvents: 'none', // #1686 http://caniuse.com/#feat=pointer-events
2690 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { whiteSpace: 'nowrap'
2691 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2692  
2693 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //xDateFormat: '%A, %b %e, %Y',
2694 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //valueDecimals: null,
2695 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //valuePrefix: '',
2696 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //valueSuffix: ''
2697 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2698  
2699 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { credits: {
2700 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { enabled: true,
2701 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { href: 'http://www.highcharts.com',
2702 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { position: {
2703 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { align: 'right',
2704 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { x: -10,
2705 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { verticalAlign: 'bottom',
2706 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { y: -5
2707 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2708  
2709 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { style: {
2710 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { cursor: 'pointer',
2711 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { color: '#999999',
2712 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { fontSize: '9px'
2713 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2714  
2715 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { text: 'Highcharts.com'
2716 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2717 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { };
2718  
2719  
2720  
2721 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2722 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Sets the getTimezoneOffset function. If the timezone option is set, a default
2723 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * getTimezoneOffset function with that timezone is returned. If not, the
2724 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * specified getTimezoneOffset function is returned. If neither are specified,
2725 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * undefined is returned.
2726 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @return {function} a getTimezoneOffset function or undefined
2727 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2728 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { function getTimezoneOffsetOption() {
2729 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var globalOptions = H.defaultOptions.global,
2730 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { moment = win.moment;
2731  
2732 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (globalOptions.timezone) {
2733 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (!moment) {
2734 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // getTimezoneOffset-function stays undefined because it depends on
2735 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Moment.js
2736 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { H.error(25);
2737  
2738 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else {
2739 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return function(timestamp) {
2740 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return -moment.tz(
2741 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { timestamp,
2742 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { globalOptions.timezone
2743 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ).utcOffset();
2744 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { };
2745 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2746 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2747  
2748 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // If not timezone is set, look for the getTimezoneOffset callback
2749 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return globalOptions.useUTC && globalOptions.getTimezoneOffset;
2750 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2751  
2752 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2753 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Set the time methods globally based on the useUTC option. Time method can be
2754 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * either local time or UTC (default). It is called internally on initiating
2755 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Highcharts and after running `Highcharts.setOptions`.
2756 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
2757 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @private
2758 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2759 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { function setTimeMethods() {
2760 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var globalOptions = H.defaultOptions.global,
2761 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { Date,
2762 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { useUTC = globalOptions.useUTC,
2763 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { GET = useUTC ? 'getUTC' : 'get',
2764 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { SET = useUTC ? 'setUTC' : 'set';
2765  
2766 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { H.Date = Date = globalOptions.Date || win.Date; // Allow using a different Date class
2767 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { Date.hcTimezoneOffset = useUTC && globalOptions.timezoneOffset;
2768 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { Date.hcGetTimezoneOffset = getTimezoneOffsetOption();
2769 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { Date.hcMakeTime = function(year, month, date, hours, minutes, seconds) {
2770 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var d;
2771 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (useUTC) {
2772 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { d = Date.UTC.apply(0, arguments);
2773 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { d += getTZOffset(d);
2774 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else {
2775 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { d = new Date(
2776 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { year,
2777 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { month,
2778 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { pick(date, 1),
2779 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { pick(hours, 0),
2780 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { pick(minutes, 0),
2781 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { pick(seconds, 0)
2782 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ).getTime();
2783 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2784 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return d;
2785 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { };
2786 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { each(['Minutes', 'Hours', 'Day', 'Date', 'Month', 'FullYear'], function(s) {
2787 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { Date['hcGet' + s] = GET + s;
2788 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
2789 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { each(['Milliseconds', 'Seconds', 'Minutes', 'Hours', 'Date', 'Month', 'FullYear'], function(s) {
2790 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { Date['hcSet' + s] = SET + s;
2791 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
2792 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2793  
2794 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2795 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Merge the default options with custom options and return the new options
2796 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * structure. Commonly used for defining reusable templates.
2797 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
2798 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @function #setOptions
2799 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @memberOf Highcharts
2800 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @sample highcharts/global/useutc-false Setting a global option
2801 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @sample highcharts/members/setoptions Applying a global theme
2802 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {Object} options The new custom chart options.
2803 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {Object} Updated options.
2804 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2805 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { H.setOptions = function(options) {
2806  
2807 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Copy in the default options
2808 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { H.defaultOptions = merge(true, H.defaultOptions, options);
2809  
2810 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Apply UTC
2811 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { setTimeMethods();
2812  
2813 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return H.defaultOptions;
2814 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { };
2815  
2816 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2817 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Get the updated default options. Until 3.0.7, merely exposing defaultOptions for outside modules
2818 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * wasn't enough because the setOptions method created a new object.
2819 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2820 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { H.getOptions = function() {
2821 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return H.defaultOptions;
2822 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { };
2823  
2824  
2825 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Series defaults
2826 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { H.defaultPlotOptions = H.defaultOptions.plotOptions;
2827  
2828 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // set the default time methods
2829 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { setTimeMethods();
2830  
2831 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }(Highcharts));
2832 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { (function(H) {
2833 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2834 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * (c) 2010-2017 Torstein Honsi
2835 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
2836 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * License: www.highcharts.com/license
2837 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2838 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var SVGElement,
2839 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { SVGRenderer,
2840  
2841 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { addEvent = H.addEvent,
2842 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { animate = H.animate,
2843 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { attr = H.attr,
2844 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { charts = H.charts,
2845 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { color = H.color,
2846 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { css = H.css,
2847 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { createElement = H.createElement,
2848 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { defined = H.defined,
2849 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { deg2rad = H.deg2rad,
2850 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { destroyObjectProperties = H.destroyObjectProperties,
2851 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { doc = H.doc,
2852 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { each = H.each,
2853 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { extend = H.extend,
2854 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { erase = H.erase,
2855 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { grep = H.grep,
2856 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { hasTouch = H.hasTouch,
2857 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { inArray = H.inArray,
2858 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { isArray = H.isArray,
2859 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { isFirefox = H.isFirefox,
2860 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { isMS = H.isMS,
2861 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { isObject = H.isObject,
2862 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { isString = H.isString,
2863 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { isWebKit = H.isWebKit,
2864 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { merge = H.merge,
2865 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { noop = H.noop,
2866 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { objectEach = H.objectEach,
2867 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { pick = H.pick,
2868 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { pInt = H.pInt,
2869 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { removeEvent = H.removeEvent,
2870 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { splat = H.splat,
2871 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { stop = H.stop,
2872 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { svg = H.svg,
2873 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { SVG_NS = H.SVG_NS,
2874 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { symbolSizes = H.symbolSizes,
2875 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { win = H.win;
2876  
2877 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2878 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @typedef {Object} SVGDOMElement - An SVG DOM element.
2879 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2880 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2881 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * The SVGElement prototype is a JavaScript wrapper for SVG elements used in the
2882 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * rendering layer of Highcharts. Combined with the {@link
2883 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Highcharts.SVGRenderer} object, these prototypes allow freeform annotation
2884 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * in the charts or even in HTML pages without instanciating a chart. The
2885 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * SVGElement can also wrap HTML labels, when `text` or `label` elements are
2886 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * created with the `useHTML` parameter.
2887 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
2888 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * The SVGElement instances are created through factory functions on the
2889 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * {@link Highcharts.SVGRenderer} object, like
2890 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * [rect]{@link Highcharts.SVGRenderer#rect}, [path]{@link
2891 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Highcharts.SVGRenderer#path}, [text]{@link Highcharts.SVGRenderer#text},
2892 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * [label]{@link Highcharts.SVGRenderer#label}, [g]{@link
2893 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Highcharts.SVGRenderer#g} and more.
2894 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
2895 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @class Highcharts.SVGElement
2896 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2897 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { SVGElement = H.SVGElement = function() {
2898 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this;
2899 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { };
2900 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { extend(SVGElement.prototype, /** @lends Highcharts.SVGElement.prototype */ {
2901  
2902 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Default base for animation
2903 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { opacity: 1,
2904 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { SVG_NS: SVG_NS,
2905  
2906 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2907 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * For labels, these CSS properties are applied to the `text` node directly.
2908 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @type {Array.<string>}
2909 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2910 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { textProps: ['direction', 'fontSize', 'fontWeight', 'fontFamily',
2911 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'fontStyle', 'color', 'lineHeight', 'width', 'textAlign',
2912 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'textDecoration', 'textOverflow', 'textOutline'
2913 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ],
2914  
2915 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2916 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Initialize the SVG renderer. This function only exists to make the
2917 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * initiation process overridable. It should not be called directly.
2918 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
2919 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {HighchartsSVGRenderer} renderer
2920 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * The SVGRenderer instance to initialize to.
2921 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {String} nodeName
2922 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * The SVG node name.
2923 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {void}
2924 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2925 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { init: function(renderer, nodeName) {
2926  
2927 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2928 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * The DOM node. Each SVGRenderer instance wraps a main DOM node, but
2929 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * may also represent more nodes.
2930 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @type {SVGDOMNode|HTMLDOMNode}
2931 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2932 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.element = nodeName === 'span' ?
2933 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { createElement(nodeName) :
2934 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { doc.createElementNS(this.SVG_NS, nodeName);
2935  
2936 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2937 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * The renderer that the SVGElement belongs to.
2938 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @type {Highcharts.SVGRenderer}
2939 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2940 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.renderer = renderer;
2941 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2942  
2943 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2944 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Animate to given attributes or CSS properties.
2945 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
2946 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {SVGAttributes} params SVG attributes or CSS to animate.
2947 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {AnimationOptions} [options] Animation options.
2948 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {Function} [complete] Function to perform at the end of animation.
2949 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
2950 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @sample highcharts/members/element-on/
2951 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Setting some attributes by animation
2952 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
2953 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {Highcharts.SVGElement} Returns the SVGElement for chaining.
2954 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
2955 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { animate: function(params, options, complete) {
2956 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var animOptions = H.animObject(
2957 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { pick(options, this.renderer.globalAnimation, true)
2958 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { );
2959 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (animOptions.duration !== 0) {
2960 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (complete) { // allows using a callback with the global animation without overwriting it
2961 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { animOptions.complete = complete;
2962 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2963 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { animate(this, params, animOptions);
2964 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else {
2965 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.attr(params, null, complete);
2966 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (animOptions.step) {
2967 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { animOptions.step.call(this);
2968 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2969 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
2970 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this;
2971 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
2972  
2973 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
2974 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @typedef {Object} GradientOptions
2975 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @property {Object} linearGradient Holds an object that defines the start
2976 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * position and the end position relative to the shape.
2977 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @property {Number} linearGradient.x1 Start horizontal position of the
2978 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * gradient. Ranges 0-1.
2979 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @property {Number} linearGradient.x2 End horizontal position of the
2980 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * gradient. Ranges 0-1.
2981 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @property {Number} linearGradient.y1 Start vertical position of the
2982 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * gradient. Ranges 0-1.
2983 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @property {Number} linearGradient.y2 End vertical position of the
2984 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * gradient. Ranges 0-1.
2985 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @property {Object} radialGradient Holds an object that defines the center
2986 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * position and the radius.
2987 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @property {Number} radialGradient.cx Center horizontal position relative
2988 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * to the shape. Ranges 0-1.
2989 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @property {Number} radialGradient.cy Center vertical position relative
2990 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * to the shape. Ranges 0-1.
2991 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @property {Number} radialGradient.r Radius relative to the shape. Ranges
2992 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * 0-1.
2993 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @property {Array.<Array>} stops The first item in each tuple is the
2994 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * position in the gradient, where 0 is the start of the gradient and 1
2995 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * is the end of the gradient. Multiple stops can be applied. The second
2996 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * item is the color for each stop. This color can also be given in the
2997 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * rgba format.
2998 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
2999 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @example
3000 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * // Linear gradient used as a color option
3001 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * color: {
3002 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * linearGradient: { x1: 0, x2: 0, y1: 0, y2: 1 },
3003 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * stops: [
3004 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * [0, '#003399'], // start
3005 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * [0.5, '#ffffff'], // middle
3006 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * [1, '#3366AA'] // end
3007 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * ]
3008 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * }
3009 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * }
3010 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3011 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3012 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Build and apply an SVG gradient out of a common JavaScript configuration
3013 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * object. This function is called from the attribute setters.
3014 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3015 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @private
3016 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {GradientOptions} color The gradient options structure.
3017 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {string} prop The property to apply, can either be `fill` or
3018 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * `stroke`.
3019 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {SVGDOMElement} elem SVG DOM element to apply the gradient on.
3020 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3021 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { colorGradient: function(color, prop, elem) {
3022 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var renderer = this.renderer,
3023 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { colorObject,
3024 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradName,
3025 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradAttr,
3026 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { radAttr,
3027 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradients,
3028 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradientObject,
3029 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { stops,
3030 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { stopColor,
3031 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { stopOpacity,
3032 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { radialReference,
3033 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { id,
3034 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { key = [],
3035 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { value;
3036  
3037 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Apply linear or radial gradients
3038 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (color.radialGradient) {
3039 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradName = 'radialGradient';
3040 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else if (color.linearGradient) {
3041 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradName = 'linearGradient';
3042 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3043  
3044 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (gradName) {
3045 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradAttr = color[gradName];
3046 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradients = renderer.gradients;
3047 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { stops = color.stops;
3048 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { radialReference = elem.radialReference;
3049  
3050 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Keep < 2.2 kompatibility
3051 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (isArray(gradAttr)) {
3052 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { color[gradName] = gradAttr = {
3053 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { x1: gradAttr[0],
3054 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { y1: gradAttr[1],
3055 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { x2: gradAttr[2],
3056 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { y2: gradAttr[3],
3057 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradientUnits: 'userSpaceOnUse'
3058 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { };
3059 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3060  
3061 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Correct the radial gradient for the radial reference system
3062 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (
3063 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradName === 'radialGradient' &&
3064 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { radialReference &&
3065 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { !defined(gradAttr.gradientUnits)
3066 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ) {
3067 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { radAttr = gradAttr; // Save the radial attributes for updating
3068 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradAttr = merge(
3069 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradAttr,
3070 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { renderer.getRadialAttr(radialReference, radAttr), {
3071 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradientUnits: 'userSpaceOnUse'
3072 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3073 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { );
3074 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3075  
3076 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Build the unique key to detect whether we need to create a new element (#1282)
3077 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { objectEach(gradAttr, function(val, n) {
3078 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (n !== 'id') {
3079 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { key.push(n, val);
3080 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3081 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
3082 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { objectEach(stops, function(val) {
3083 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { key.push(val);
3084 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
3085 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { key = key.join(',');
3086  
3087 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Check if a gradient object with the same config object is created within this renderer
3088 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (gradients[key]) {
3089 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { id = gradients[key].attr('id');
3090  
3091 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else {
3092  
3093 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Set the id and create the element
3094 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradAttr.id = id = H.uniqueKey();
3095 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradients[key] = gradientObject = renderer.createElement(gradName)
3096 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { .attr(gradAttr)
3097 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { .add(renderer.defs);
3098  
3099 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradientObject.radAttr = radAttr;
3100  
3101 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // The gradient needs to keep a list of stops to be able to destroy them
3102 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradientObject.stops = [];
3103 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { each(stops, function(stop) {
3104 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var stopObject;
3105 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (stop[1].indexOf('rgba') === 0) {
3106 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { colorObject = H.color(stop[1]);
3107 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { stopColor = colorObject.get('rgb');
3108 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { stopOpacity = colorObject.get('a');
3109 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else {
3110 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { stopColor = stop[1];
3111 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { stopOpacity = 1;
3112 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3113 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { stopObject = renderer.createElement('stop').attr({
3114 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { offset: stop[0],
3115 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'stop-color': stopColor,
3116 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'stop-opacity': stopOpacity
3117 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }).add(gradientObject);
3118  
3119 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Add the stop element to the gradient
3120 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { gradientObject.stops.push(stopObject);
3121 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
3122 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3123  
3124 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Set the reference to the gradient object
3125 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { value = 'url(' + renderer.url + '#' + id + ')';
3126 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { elem.setAttribute(prop, value);
3127 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { elem.gradient = key;
3128  
3129 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Allow the color to be concatenated into tooltips formatters etc. (#2995)
3130 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { color.toString = function() {
3131 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return value;
3132 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { };
3133 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3134 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3135  
3136 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3137 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Apply a text outline through a custom CSS property, by copying the text
3138 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * element and apply stroke to the copy. Used internally. Contrast checks
3139 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * at http://jsfiddle.net/highcharts/43soe9m1/2/ .
3140 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3141 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @private
3142 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {String} textOutline A custom CSS `text-outline` setting, defined
3143 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * by `width color`.
3144 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @example
3145 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * // Specific color
3146 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * text.css({
3147 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * textOutline: '1px black'
3148 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * });
3149 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * // Automatic contrast
3150 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * text.css({
3151 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * color: '#000000', // black text
3152 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * textOutline: '1px contrast' // => white outline
3153 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * });
3154 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3155 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { applyTextOutline: function(textOutline) {
3156 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var elem = this.element,
3157 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { tspans,
3158 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { tspan,
3159 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { hasContrast = textOutline.indexOf('contrast') !== -1,
3160 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { styles = {},
3161 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { color,
3162 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { strokeWidth,
3163 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { firstRealChild,
3164 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { i;
3165  
3166 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // When the text shadow is set to contrast, use dark stroke for light
3167 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // text and vice versa.
3168 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (hasContrast) {
3169 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { styles.textOutline = textOutline = textOutline.replace(
3170 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /contrast/g,
3171 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.renderer.getContrast(elem.style.fill)
3172 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { );
3173 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3174  
3175 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Extract the stroke width and color
3176 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { textOutline = textOutline.split(' ');
3177 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { color = textOutline[textOutline.length - 1];
3178 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { strokeWidth = textOutline[0];
3179  
3180 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (strokeWidth && strokeWidth !== 'none' && H.svg) {
3181  
3182 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.fakeTS = true; // Fake text shadow
3183  
3184 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { tspans = [].slice.call(elem.getElementsByTagName('tspan'));
3185  
3186 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // In order to get the right y position of the clone,
3187 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // copy over the y setter
3188 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.ySetter = this.xSetter;
3189  
3190 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Since the stroke is applied on center of the actual outline, we
3191 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // need to double it to get the correct stroke-width outside the
3192 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // glyphs.
3193 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { strokeWidth = strokeWidth.replace(
3194 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /(^[\d\.]+)(.*?)$/g,
3195 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { function(match, digit, unit) {
3196 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return (2 * digit) + unit;
3197 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3198 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { );
3199  
3200 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Remove shadows from previous runs. Iterate from the end to
3201 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // support removing items inside the cycle (#6472).
3202 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { i = tspans.length;
3203 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { while (i--) {
3204 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { tspan = tspans[i];
3205 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (tspan.getAttribute('class') === 'highcharts-text-outline') {
3206 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Remove then erase
3207 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { erase(tspans, elem.removeChild(tspan));
3208 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3209 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3210  
3211 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // For each of the tspans, create a stroked copy behind it.
3212 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { firstRealChild = elem.firstChild;
3213 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { each(tspans, function(tspan, y) {
3214 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var clone;
3215  
3216 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Let the first line start at the correct X position
3217 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (y === 0) {
3218 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { tspan.setAttribute('x', elem.getAttribute('x'));
3219 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { y = elem.getAttribute('y');
3220 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { tspan.setAttribute('y', y || 0);
3221 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (y === null) {
3222 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { elem.setAttribute('y', 0);
3223 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3224 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3225  
3226 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Create the clone and apply outline properties
3227 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { clone = tspan.cloneNode(1);
3228 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { attr(clone, {
3229 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'class': 'highcharts-text-outline',
3230 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'fill': color,
3231 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'stroke': color,
3232 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'stroke-width': strokeWidth,
3233 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'stroke-linejoin': 'round'
3234 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
3235 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { elem.insertBefore(clone, firstRealChild);
3236 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
3237 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3238 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3239  
3240 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3241 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3242 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @typedef {Object} SVGAttributes An object of key-value pairs for SVG
3243 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * attributes. Attributes in Highcharts elements for the most parts
3244 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * correspond to SVG, but some are specific to Highcharts, like `zIndex`,
3245 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * `rotation`, `translateX`, `translateY`, `scaleX` and `scaleY`. SVG
3246 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * attributes containing a hyphen are _not_ camel-cased, they should be
3247 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * quoted to preserve the hyphen.
3248 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @example
3249 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * {
3250 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * 'stroke': '#ff0000', // basic
3251 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * 'stroke-width': 2, // hyphenated
3252 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * 'rotation': 45 // custom
3253 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * 'd': ['M', 10, 10, 'L', 30, 30, 'z'] // path definition, note format
3254 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * }
3255 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3256 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3257 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Apply native and custom attributes to the SVG elements.
3258 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3259 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * In order to set the rotation center for rotation, set x and y to 0 and
3260 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * use `translateX` and `translateY` attributes to position the element
3261 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * instead.
3262 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3263 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Attributes frequently used in Highcharts are `fill`, `stroke`,
3264 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * `stroke-width`.
3265 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3266 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {SVGAttributes|String} hash - The native and custom SVG
3267 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * attributes.
3268 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {string} [val] - If the type of the first argument is `string`,
3269 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * the second can be a value, which will serve as a single attribute
3270 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * setter. If the first argument is a string and the second is undefined,
3271 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * the function serves as a getter and the current value of the property
3272 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * is returned.
3273 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {Function} [complete] - A callback function to execute after setting
3274 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * the attributes. This makes the function compliant and interchangeable
3275 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * with the {@link SVGElement#animate} function.
3276 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {boolean} [continueAnimation=true] Used internally when `.attr` is
3277 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * called as part of an animation step. Otherwise, calling `.attr` for an
3278 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * attribute will stop animation for that attribute.
3279 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3280 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {SVGElement|string|number} If used as a setter, it returns the
3281 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * current {@link SVGElement} so the calls can be chained. If used as a
3282 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * getter, the current value of the attribute is returned.
3283 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3284 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @sample highcharts/members/renderer-rect/
3285 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Setting some attributes
3286 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3287 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @example
3288 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * // Set multiple attributes
3289 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * element.attr({
3290 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * stroke: 'red',
3291 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * fill: 'blue',
3292 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * x: 10,
3293 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * y: 10
3294 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * });
3295 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3296 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * // Set a single attribute
3297 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * element.attr('stroke', 'red');
3298 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3299 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * // Get an attribute
3300 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * element.attr('stroke'); // => 'red'
3301 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3302 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3303 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { attr: function(hash, val, complete, continueAnimation) {
3304 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var key,
3305 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { element = this.element,
3306 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { hasSetSymbolSize,
3307 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ret = this,
3308 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { skipAttr,
3309 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { setter;
3310  
3311 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // single key-value pair
3312 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (typeof hash === 'string' && val !== undefined) {
3313 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { key = hash;
3314 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { hash = {};
3315 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { hash[key] = val;
3316 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3317  
3318 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // used as a getter: first argument is a string, second is undefined
3319 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (typeof hash === 'string') {
3320 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ret = (this[hash + 'Getter'] || this._defaultGetter).call(this, hash, element);
3321  
3322 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // setter
3323 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else {
3324  
3325 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { objectEach(hash, function(val, key) {
3326 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { skipAttr = false;
3327  
3328 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Unless .attr is from the animator update, stop current
3329 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // running animation of this property
3330 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (!continueAnimation) {
3331 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { stop(this, key);
3332 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3333  
3334 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Special handling of symbol attributes
3335 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (
3336 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.symbolName &&
3337 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /^(x|y|width|height|r|start|end|innerR|anchorX|anchorY)$/
3338 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { .test(key)
3339 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ) {
3340 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (!hasSetSymbolSize) {
3341 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.symbolAttr(hash);
3342 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { hasSetSymbolSize = true;
3343 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3344 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { skipAttr = true;
3345 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3346  
3347 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (this.rotation && (key === 'x' || key === 'y')) {
3348 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.doTransform = true;
3349 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3350  
3351 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (!skipAttr) {
3352 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { setter = this[key + 'Setter'] || this._defaultSetter;
3353 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { setter.call(this, val, key, element);
3354  
3355  
3356 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Let the shadow follow the main element
3357 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (this.shadows && /^(width|height|visibility|x|y|d|transform|cx|cy|r)$/.test(key)) {
3358 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.updateShadows(key, val, setter);
3359 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3360  
3361 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3362 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }, this);
3363  
3364 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.afterSetters();
3365 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3366  
3367 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // In accordance with animate, run a complete callback
3368 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (complete) {
3369 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { complete();
3370 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3371  
3372 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return ret;
3373 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3374  
3375 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3376 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * This method is executed in the end of {attr}, after setting all attributes in the hash.
3377 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * In can be used to efficiently consolidate multiple attributes in one SVG property -- e.g.,
3378 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * translate, rotate and scale are merged in one "transform" attribute in the SVG node.
3379 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3380 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { afterSetters: function() {
3381 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Update transform. Do this outside the loop to prevent redundant updating for batch setting
3382 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // of attributes.
3383 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (this.doTransform) {
3384 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.updateTransform();
3385 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.doTransform = false;
3386 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3387 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3388  
3389  
3390 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3391 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Update the shadow elements with new attributes.
3392 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3393 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @private
3394 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {String} key - The attribute name.
3395 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {String|Number} value - The value of the attribute.
3396 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {Function} setter - The setter function, inherited from the
3397 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * parent wrapper
3398 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {void}
3399 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3400 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { updateShadows: function(key, value, setter) {
3401 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var shadows = this.shadows,
3402 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { i = shadows.length;
3403  
3404 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { while (i--) {
3405 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { setter.call(
3406 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { shadows[i],
3407 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { key === 'height' ?
3408 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { Math.max(value - (shadows[i].cutHeight || 0), 0) :
3409 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { key === 'd' ? this.d : value,
3410 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { key,
3411 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { shadows[i]
3412 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { );
3413 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3414 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3415  
3416  
3417 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3418 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Add a class name to an element.
3419 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3420 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {string} className - The new class name to add.
3421 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {boolean} [replace=false] - When true, the existing class name(s)
3422 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * will be overwritten with the new one. When false, the new one is
3423 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * added.
3424 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {Highcharts.SVGElement} Return the SVG element for chainability.
3425 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3426 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { addClass: function(className, replace) {
3427 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var currentClassName = this.attr('class') || '';
3428  
3429 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (currentClassName.indexOf(className) === -1) {
3430 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (!replace) {
3431 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { className =
3432 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { (currentClassName + (currentClassName ? ' ' : '') +
3433 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { className).replace(' ', ' ');
3434 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3435 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.attr('class', className);
3436 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3437 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this;
3438 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3439  
3440 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3441 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Check if an element has the given class name.
3442 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {string} className - The class name to check for.
3443 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @return {Boolean}
3444 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3445 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { hasClass: function(className) {
3446 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return attr(this.element, 'class').indexOf(className) !== -1;
3447 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3448  
3449 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3450 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Remove a class name from the element.
3451 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {string} className The class name to remove.
3452 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @return {Highcharts.SVGElement} Returns the SVG element for chainability.
3453 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3454 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { removeClass: function(className) {
3455 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { attr(this.element, 'class', (attr(this.element, 'class') || '').replace(className, ''));
3456 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this;
3457 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3458  
3459 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3460 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * If one of the symbol size affecting parameters are changed,
3461 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * check all the others only once for each call to an element's
3462 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * .attr() method
3463 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {Object} hash - The attributes to set.
3464 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @private
3465 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3466 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { symbolAttr: function(hash) {
3467 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var wrapper = this;
3468  
3469 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { each(['x', 'y', 'r', 'start', 'end', 'width', 'height', 'innerR', 'anchorX', 'anchorY'], function(key) {
3470 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper[key] = pick(hash[key], wrapper[key]);
3471 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
3472  
3473 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper.attr({
3474 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { d: wrapper.renderer.symbols[wrapper.symbolName](
3475 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper.x,
3476 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper.y,
3477 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper.width,
3478 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper.height,
3479 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper
3480 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { )
3481 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
3482 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3483  
3484 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3485 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Apply a clipping rectangle to this element.
3486 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3487 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {ClipRect} [clipRect] - The clipping rectangle. If skipped, the
3488 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * current clip is removed.
3489 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {Highcharts.SVGElement} Returns the SVG element to allow chaining.
3490 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3491 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { clip: function(clipRect) {
3492 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this.attr(
3493 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'clip-path',
3494 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { clipRect ?
3495 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'url(' + this.renderer.url + '#' + clipRect.id + ')' :
3496 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { 'none'
3497 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { );
3498 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3499  
3500 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3501 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Calculate the coordinates needed for drawing a rectangle crisply and
3502 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * return the calculated attributes.
3503 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3504 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {Object} rect - A rectangle.
3505 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {number} rect.x - The x position.
3506 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {number} rect.y - The y position.
3507 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {number} rect.width - The width.
3508 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {number} rect.height - The height.
3509 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {number} [strokeWidth] - The stroke width to consider when
3510 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * computing crisp positioning. It can also be set directly on the rect
3511 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * parameter.
3512 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3513 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {{x: Number, y: Number, width: Number, height: Number}} The
3514 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * modified rectangle arguments.
3515 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3516 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { crisp: function(rect, strokeWidth) {
3517  
3518 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var wrapper = this,
3519 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { attribs = {},
3520 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { normalizer;
3521  
3522 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { strokeWidth = strokeWidth || rect.strokeWidth || 0;
3523 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { normalizer = Math.round(strokeWidth) % 2 / 2; // Math.round because strokeWidth can sometimes have roundoff errors
3524  
3525 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // normalize for crisp edges
3526 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rect.x = Math.floor(rect.x || wrapper.x || 0) + normalizer;
3527 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rect.y = Math.floor(rect.y || wrapper.y || 0) + normalizer;
3528 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rect.width = Math.floor((rect.width || wrapper.width || 0) - 2 * normalizer);
3529 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rect.height = Math.floor((rect.height || wrapper.height || 0) - 2 * normalizer);
3530 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (defined(rect.strokeWidth)) {
3531 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rect.strokeWidth = strokeWidth;
3532 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3533  
3534 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { objectEach(rect, function(val, key) {
3535 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (wrapper[key] !== val) { // only set attribute if changed
3536 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper[key] = attribs[key] = val;
3537 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3538 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
3539  
3540 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return attribs;
3541 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3542  
3543 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3544 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Set styles for the element. In addition to CSS styles supported by
3545 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * native SVG and HTML elements, there are also some custom made for
3546 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Highcharts, like `width`, `ellipsis` and `textOverflow` for SVG text
3547 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * elements.
3548 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {CSSObject} styles The new CSS styles.
3549 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {Highcharts.SVGElement} Return the SVG element for chaining.
3550 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3551 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @sample highcharts/members/renderer-text-on-chart/
3552 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Styled text
3553 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3554 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { css: function(styles) {
3555 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var oldStyles = this.styles,
3556 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { newStyles = {},
3557 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { elem = this.element,
3558 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { textWidth,
3559 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { serializedCss = '',
3560 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { hyphenate,
3561 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { hasNew = !oldStyles,
3562 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // These CSS properties are interpreted internally by the SVG
3563 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // renderer, but are not supported by SVG and should not be added to
3564 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // the DOM. In styled mode, no CSS should find its way to the DOM
3565 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // whatsoever (#6173, #6474).
3566 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { svgPseudoProps = ['textOutline', 'textOverflow', 'width'];
3567  
3568 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // convert legacy
3569 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (styles && styles.color) {
3570 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { styles.fill = styles.color;
3571 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3572  
3573 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Filter out existing styles to increase performance (#2640)
3574 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (oldStyles) {
3575 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { objectEach(styles, function(style, n) {
3576 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (style !== oldStyles[n]) {
3577 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { newStyles[n] = style;
3578 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { hasNew = true;
3579 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3580 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
3581 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3582 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (hasNew) {
3583  
3584 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Merge the new styles with the old ones
3585 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (oldStyles) {
3586 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { styles = extend(
3587 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { oldStyles,
3588 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { newStyles
3589 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { );
3590 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3591  
3592 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Get the text width from style
3593 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { textWidth = this.textWidth = (
3594 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { styles &&
3595 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { styles.width &&
3596 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { styles.width !== 'auto' &&
3597 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { elem.nodeName.toLowerCase() === 'text' &&
3598 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { pInt(styles.width)
3599 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { );
3600  
3601 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // store object
3602 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.styles = styles;
3603  
3604 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (textWidth && (!svg && this.renderer.forExport)) {
3605 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { delete styles.width;
3606 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3607  
3608 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // serialize and set style attribute
3609 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (isMS && !svg) {
3610 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { css(this.element, styles);
3611 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else {
3612 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { hyphenate = function(a, b) {
3613 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return '-' + b.toLowerCase();
3614 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { };
3615 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { objectEach(styles, function(style, n) {
3616 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (inArray(n, svgPseudoProps) === -1) {
3617 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { serializedCss +=
3618 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { n.replace(/([A-Z])/g, hyphenate) + ':' +
3619 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { style + ';';
3620 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3621 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
3622 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (serializedCss) {
3623 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { attr(elem, 'style', serializedCss); // #1881
3624 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3625 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3626  
3627  
3628 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (this.added) {
3629  
3630 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Rebuild text after added. Cache mechanisms in the buildText
3631 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // will prevent building if there are no significant changes.
3632 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (this.element.nodeName === 'text') {
3633 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.renderer.buildText(this);
3634 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3635  
3636 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Apply text outline after added
3637 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (styles && styles.textOutline) {
3638 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.applyTextOutline(styles.textOutline);
3639 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3640 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3641 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3642  
3643 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this;
3644 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3645  
3646  
3647 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3648 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Get the current stroke width. In classic mode, the setter registers it
3649 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * directly on the element.
3650 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {number} The stroke width in pixels.
3651 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @ignore
3652 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3653 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { strokeWidth: function() {
3654 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this['stroke-width'] || 0;
3655 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3656  
3657  
3658 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3659 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Add an event listener. This is a simple setter that replaces all other
3660 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * events of the same type, opposed to the {@link Highcharts#addEvent}
3661 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * function.
3662 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {string} eventType - The event type. If the type is `click`,
3663 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Highcharts will internally translate it to a `touchstart` event on
3664 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * touch devices, to prevent the browser from waiting for a click event
3665 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * from firing.
3666 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {Function} handler - The handler callback.
3667 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {Highcharts.SVGElement} The SVGElement for chaining.
3668 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3669 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @sample highcharts/members/element-on/
3670 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * A clickable rectangle
3671 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3672 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { on: function(eventType, handler) {
3673 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var svgElement = this,
3674 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { element = svgElement.element;
3675  
3676 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // touch
3677 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (hasTouch && eventType === 'click') {
3678 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { element.ontouchstart = function(e) {
3679 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { svgElement.touchEventFired = Date.now(); // #2269
3680 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { e.preventDefault();
3681 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { handler.call(element, e);
3682 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { };
3683 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { element.onclick = function(e) {
3684 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (win.navigator.userAgent.indexOf('Android') === -1 ||
3685 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { Date.now() - (svgElement.touchEventFired || 0) > 1100) {
3686 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { handler.call(element, e);
3687 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3688 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { };
3689 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else {
3690 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // simplest possible event model for internal use
3691 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { element['on' + eventType] = handler;
3692 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3693 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this;
3694 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3695  
3696 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3697 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Set the coordinates needed to draw a consistent radial gradient across
3698 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * a shape regardless of positioning inside the chart. Used on pie slices
3699 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * to make all the slices have the same radial reference point.
3700 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3701 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {Array} coordinates The center reference. The format is
3702 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * `[centerX, centerY, diameter]` in pixels.
3703 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {Highcharts.SVGElement} Returns the SVGElement for chaining.
3704 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3705 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { setRadialReference: function(coordinates) {
3706 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var existingGradient = this.renderer.gradients[this.element.gradient];
3707  
3708 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.element.radialReference = coordinates;
3709  
3710 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // On redrawing objects with an existing gradient, the gradient needs
3711 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // to be repositioned (#3801)
3712 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (existingGradient && existingGradient.radAttr) {
3713 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { existingGradient.animate(
3714 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.renderer.getRadialAttr(
3715 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { coordinates,
3716 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { existingGradient.radAttr
3717 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { )
3718 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { );
3719 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3720  
3721 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this;
3722 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3723  
3724 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3725 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Move an object and its children by x and y values.
3726 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3727 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {number} x - The x value.
3728 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {number} y - The y value.
3729 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3730 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { translate: function(x, y) {
3731 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this.attr({
3732 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { translateX: x,
3733 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { translateY: y
3734 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
3735 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3736  
3737 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3738 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Invert a group, rotate and flip. This is used internally on inverted
3739 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * charts, where the points and graphs are drawn as if not inverted, then
3740 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * the series group elements are inverted.
3741 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3742 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {boolean} inverted - Whether to invert or not. An inverted shape
3743 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * can be un-inverted by setting it to false.
3744 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {Highcharts.SVGElement} Return the SVGElement for chaining.
3745 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3746 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { invert: function(inverted) {
3747 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var wrapper = this;
3748 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper.inverted = inverted;
3749 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper.updateTransform();
3750 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return wrapper;
3751 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3752  
3753 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3754 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Update the transform attribute based on internal properties. Deals with
3755 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * the custom `translateX`, `translateY`, `rotation`, `scaleX` and `scaleY`
3756 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * attributes and updates the SVG `transform` attribute.
3757 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @private
3758 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {void}
3759 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3760 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { updateTransform: function() {
3761 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var wrapper = this,
3762 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { translateX = wrapper.translateX || 0,
3763 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { translateY = wrapper.translateY || 0,
3764 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { scaleX = wrapper.scaleX,
3765 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { scaleY = wrapper.scaleY,
3766 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { inverted = wrapper.inverted,
3767 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rotation = wrapper.rotation,
3768 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { element = wrapper.element,
3769 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { transform;
3770  
3771 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // flipping affects translate as adjustment for flipping around the group's axis
3772 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (inverted) {
3773 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { translateX += wrapper.width;
3774 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { translateY += wrapper.height;
3775 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3776  
3777 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Apply translate. Nearly all transformed elements have translation, so instead
3778 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // of checking for translate = 0, do it always (#1767, #1846).
3779 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { transform = ['translate(' + translateX + ',' + translateY + ')'];
3780  
3781 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // apply rotation
3782 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (inverted) {
3783 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { transform.push('rotate(90) scale(-1,1)');
3784 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else if (rotation) { // text rotation
3785 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { transform.push('rotate(' + rotation + ' ' + (element.getAttribute('x') || 0) + ' ' + (element.getAttribute('y') || 0) + ')');
3786  
3787 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Delete bBox memo when the rotation changes
3788 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { //delete wrapper.bBox;
3789 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3790  
3791 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // apply scale
3792 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (defined(scaleX) || defined(scaleY)) {
3793 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { transform.push('scale(' + pick(scaleX, 1) + ' ' + pick(scaleY, 1) + ')');
3794 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3795  
3796 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (transform.length) {
3797 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { element.setAttribute('transform', transform.join(' '));
3798 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3799 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3800  
3801 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3802 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Bring the element to the front. Alternatively, a new zIndex can be set.
3803 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3804 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {Highcharts.SVGElement} Returns the SVGElement for chaining.
3805 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3806 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @sample highcharts/members/element-tofront/
3807 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Click an element to bring it to front
3808 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3809 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { toFront: function() {
3810 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var element = this.element;
3811 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { element.parentNode.appendChild(element);
3812 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this;
3813 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3814  
3815  
3816 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3817 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Align the element relative to the chart or another box.
3818 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3819 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {Object} [alignOptions] The alignment options. The function can be
3820 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * called without this parameter in order to re-align an element after the
3821 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * box has been updated.
3822 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {string} [alignOptions.align=left] Horizontal alignment. Can be
3823 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * one of `left`, `center` and `right`.
3824 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {string} [alignOptions.verticalAlign=top] Vertical alignment. Can
3825 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * be one of `top`, `middle` and `bottom`.
3826 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {number} [alignOptions.x=0] Horizontal pixel offset from
3827 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * alignment.
3828 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {number} [alignOptions.y=0] Vertical pixel offset from alignment.
3829 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {Boolean} [alignByTranslate=false] Use the `transform` attribute
3830 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * with translateX and translateY custom attributes to align this elements
3831 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * rather than `x` and `y` attributes.
3832 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {String|Object} box The box to align to, needs a width and height.
3833 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * When the box is a string, it refers to an object in the Renderer. For
3834 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * example, when box is `spacingBox`, it refers to `Renderer.spacingBox`
3835 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * which holds `width`, `height`, `x` and `y` properties.
3836 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {Highcharts.SVGElement} Returns the SVGElement for chaining.
3837 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3838 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { align: function(alignOptions, alignByTranslate, box) {
3839 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var align,
3840 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { vAlign,
3841 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { x,
3842 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { y,
3843 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { attribs = {},
3844 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { alignTo,
3845 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { renderer = this.renderer,
3846 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { alignedObjects = renderer.alignedObjects,
3847 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { alignFactor,
3848 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { vAlignFactor;
3849  
3850 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // First call on instanciate
3851 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (alignOptions) {
3852 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.alignOptions = alignOptions;
3853 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.alignByTranslate = alignByTranslate;
3854 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (!box || isString(box)) { // boxes other than renderer handle this internally
3855 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.alignTo = alignTo = box || 'renderer';
3856 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { erase(alignedObjects, this); // prevent duplicates, like legendGroup after resize
3857 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { alignedObjects.push(this);
3858 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { box = null; // reassign it below
3859 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3860  
3861 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // When called on resize, no arguments are supplied
3862 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else {
3863 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { alignOptions = this.alignOptions;
3864 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { alignByTranslate = this.alignByTranslate;
3865 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { alignTo = this.alignTo;
3866 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3867  
3868 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { box = pick(box, renderer[alignTo], renderer);
3869  
3870 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Assign variables
3871 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { align = alignOptions.align;
3872 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { vAlign = alignOptions.verticalAlign;
3873 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { x = (box.x || 0) + (alignOptions.x || 0); // default: left align
3874 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { y = (box.y || 0) + (alignOptions.y || 0); // default: top align
3875  
3876 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Align
3877 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (align === 'right') {
3878 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { alignFactor = 1;
3879 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else if (align === 'center') {
3880 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { alignFactor = 2;
3881 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3882 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (alignFactor) {
3883 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { x += (box.width - (alignOptions.width || 0)) / alignFactor;
3884 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3885 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { attribs[alignByTranslate ? 'translateX' : 'x'] = Math.round(x);
3886  
3887  
3888 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Vertical align
3889 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (vAlign === 'bottom') {
3890 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { vAlignFactor = 1;
3891 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else if (vAlign === 'middle') {
3892 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { vAlignFactor = 2;
3893 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3894 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (vAlignFactor) {
3895 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { y += (box.height - (alignOptions.height || 0)) / vAlignFactor;
3896 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3897 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { attribs[alignByTranslate ? 'translateY' : 'y'] = Math.round(y);
3898  
3899 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Animate only if already placed
3900 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this[this.placed ? 'animate' : 'attr'](attribs);
3901 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.placed = true;
3902 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.alignAttr = attribs;
3903  
3904 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this;
3905 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
3906  
3907 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
3908 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Get the bounding box (width, height, x and y) for the element. Generally
3909 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * used to get rendered text size. Since this is called a lot in charts,
3910 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * the results are cached based on text properties, in order to save DOM
3911 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * traffic. The returned bounding box includes the rotation, so for example
3912 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * a single text line of rotation 90 will report a greater height, and a
3913 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * width corresponding to the line-height.
3914 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3915 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {boolean} [reload] Skip the cache and get the updated DOM bouding
3916 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * box.
3917 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {number} [rot] Override the element's rotation. This is internally
3918 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * used on axis labels with a value of 0 to find out what the bounding box
3919 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * would be have been if it were not rotated.
3920 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {Object} The bounding box with `x`, `y`, `width` and `height`
3921 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * properties.
3922 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
3923 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @sample highcharts/members/renderer-on-chart/
3924 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Draw a rectangle based on a text's bounding box
3925 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
3926 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { getBBox: function(reload, rot) {
3927 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var wrapper = this,
3928 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { bBox, // = wrapper.bBox,
3929 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { renderer = wrapper.renderer,
3930 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { width,
3931 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { height,
3932 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rotation,
3933 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rad,
3934 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { element = wrapper.element,
3935 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { styles = wrapper.styles,
3936 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { fontSize,
3937 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { textStr = wrapper.textStr,
3938 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { toggleTextShadowShim,
3939 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { cache = renderer.cache,
3940 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { cacheKeys = renderer.cacheKeys,
3941 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { cacheKey;
3942  
3943 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rotation = pick(rot, wrapper.rotation);
3944 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rad = rotation * deg2rad;
3945  
3946  
3947 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { fontSize = styles && styles.fontSize;
3948  
3949  
3950 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (textStr !== undefined) {
3951  
3952 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { cacheKey = textStr.toString();
3953  
3954 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Since numbers are monospaced, and numerical labels appear a lot
3955 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // in a chart, we assume that a label of n characters has the same
3956 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // bounding box as others of the same length. Unless there is inner
3957 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // HTML in the label. In that case, leave the numbers as is (#5899).
3958 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (cacheKey.indexOf('<') === -1) {
3959 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { cacheKey = cacheKey.replace(/[0-9]/g, '0');
3960 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3961  
3962 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Properties that affect bounding box
3963 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { cacheKey += [
3964 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { '',
3965 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { rotation || 0,
3966 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { fontSize,
3967 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { styles && styles.width,
3968 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { styles && styles.textOverflow // #5968
3969 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ]
3970 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { .join(',');
3971  
3972 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3973  
3974 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (cacheKey && !reload) {
3975 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { bBox = cache[cacheKey];
3976 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3977  
3978 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // No cache found
3979 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (!bBox) {
3980  
3981 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // SVG elements
3982 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (element.namespaceURI === wrapper.SVG_NS || renderer.forExport) {
3983 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { try { // Fails in Firefox if the container has display: none.
3984  
3985 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // When the text shadow shim is used, we need to hide the fake shadows
3986 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // to get the correct bounding box (#3872)
3987 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { toggleTextShadowShim = this.fakeTS && function(display) {
3988 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { each(element.querySelectorAll('.highcharts-text-outline'), function(tspan) {
3989 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { tspan.style.display = display;
3990 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
3991 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { };
3992  
3993 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Workaround for #3842, Firefox reporting wrong bounding box for shadows
3994 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (toggleTextShadowShim) {
3995 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { toggleTextShadowShim('none');
3996 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
3997  
3998 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { bBox = element.getBBox ?
3999 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // SVG: use extend because IE9 is not allowed to change width and height in case
4000 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // of rotation (below)
4001 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { extend({}, element.getBBox()) : {
4002  
4003 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Legacy IE in export mode
4004 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { width: element.offsetWidth,
4005 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { height: element.offsetHeight
4006 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { };
4007  
4008 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // #3842
4009 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (toggleTextShadowShim) {
4010 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { toggleTextShadowShim('');
4011 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
4012 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } catch (e) {}
4013  
4014 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // If the bBox is not set, the try-catch block above failed. The other condition
4015 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // is for Opera that returns a width of -Infinity on hidden elements.
4016 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (!bBox || bBox.width < 0) {
4017 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { bBox = {
4018 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { width: 0,
4019 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { height: 0
4020 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { };
4021 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
4022  
4023  
4024 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // VML Renderer or useHTML within SVG
4025 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else {
4026  
4027 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { bBox = wrapper.htmlGetBBox();
4028  
4029 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
4030  
4031 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // True SVG elements as well as HTML elements in modern browsers using the .useHTML option
4032 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // need to compensated for rotation
4033 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (renderer.isSVG) {
4034 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { width = bBox.width;
4035 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { height = bBox.height;
4036  
4037 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Workaround for wrong bounding box in IE, Edge and Chrome on
4038 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Windows. With Highcharts' default font, IE and Edge report
4039 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // a box height of 16.899 and Chrome rounds it to 17. If this
4040 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // stands uncorrected, it results in more padding added below
4041 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // the text than above when adding a label border or background.
4042 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Also vertical positioning is affected.
4043 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // http://jsfiddle.net/highcharts/em37nvuj/
4044 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // (#1101, #1505, #1669, #2568, #6213).
4045 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (
4046 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { styles &&
4047 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { styles.fontSize === '11px' &&
4048 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { Math.round(height) === 17
4049 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ) {
4050 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { bBox.height = height = 14;
4051 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
4052  
4053 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Adjust for rotated text
4054 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (rotation) {
4055 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { bBox.width = Math.abs(height * Math.sin(rad)) + Math.abs(width * Math.cos(rad));
4056 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { bBox.height = Math.abs(height * Math.cos(rad)) + Math.abs(width * Math.sin(rad));
4057 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
4058 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
4059  
4060 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Cache it. When loading a chart in a hidden iframe in Firefox and IE/Edge, the
4061 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // bounding box height is 0, so don't cache it (#5620).
4062 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (cacheKey && bBox.height > 0) {
4063  
4064 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Rotate (#4681)
4065 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { while (cacheKeys.length > 250) {
4066 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { delete cache[cacheKeys.shift()];
4067 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
4068  
4069 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (!cache[cacheKey]) {
4070 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { cacheKeys.push(cacheKey);
4071 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
4072 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { cache[cacheKey] = bBox;
4073 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
4074 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
4075 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return bBox;
4076 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
4077  
4078 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
4079 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Show the element after it has been hidden.
4080 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
4081 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {boolean} [inherit=false] Set the visibility attribute to
4082 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * `inherit` rather than `visible`. The difference is that an element with
4083 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * `visibility="visible"` will be visible even if the parent is hidden.
4084 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
4085 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {Highcharts.SVGElement} Returns the SVGElement for chaining.
4086 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
4087 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { show: function(inherit) {
4088 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this.attr({
4089 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { visibility: inherit ? 'inherit' : 'visible'
4090 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
4091 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
4092  
4093 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
4094 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Hide the element, equivalent to setting the `visibility` attribute to
4095 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * `hidden`.
4096 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
4097 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {Highcharts.SVGElement} Returns the SVGElement for chaining.
4098 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
4099 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { hide: function() {
4100 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this.attr({
4101 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { visibility: 'hidden'
4102 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
4103 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
4104  
4105 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
4106 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Fade out an element by animating its opacity down to 0, and hide it on
4107 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * complete. Used internally for the tooltip.
4108 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
4109 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {number} [duration=150] The fade duration in milliseconds.
4110 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
4111 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { fadeOut: function(duration) {
4112 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var elemWrapper = this;
4113 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { elemWrapper.animate({
4114 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { opacity: 0
4115 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }, {
4116 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { duration: duration || 150,
4117 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { complete: function() {
4118 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { elemWrapper.attr({
4119 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { y: -9999
4120 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }); // #3088, assuming we're only using this for tooltips
4121 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
4122 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
4123 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
4124  
4125 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
4126 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Add the element to the DOM. All elements must be added this way.
4127 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
4128 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {Highcharts.SVGElement|SVGDOMElement} [parent] The parent item to add it to.
4129 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * If undefined, the element is added to the {@link
4130 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Highcharts.SVGRenderer.box}.
4131 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
4132 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {Highcharts.SVGElement} Returns the SVGElement for chaining.
4133 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
4134 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @sample highcharts/members/renderer-g - Elements added to a group
4135 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
4136 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { add: function(parent) {
4137  
4138 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var renderer = this.renderer,
4139 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { element = this.element,
4140 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { inserted;
4141  
4142 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (parent) {
4143 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.parentGroup = parent;
4144 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
4145  
4146 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // mark as inverted
4147 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.parentInverted = parent && parent.inverted;
4148  
4149 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // build formatted text
4150 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (this.textStr !== undefined) {
4151 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { renderer.buildText(this);
4152 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
4153  
4154 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Mark as added
4155 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.added = true;
4156  
4157 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // If we're adding to renderer root, or other elements in the group
4158 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // have a z index, we need to handle it
4159 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (!parent || parent.handleZ || this.zIndex) {
4160 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { inserted = this.zIndexSetter();
4161 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
4162  
4163 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // If zIndex is not handled, append at the end
4164 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (!inserted) {
4165 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { (parent ? parent.element : renderer.box).appendChild(element);
4166 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
4167  
4168 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // fire an event for internal hooks
4169 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (this.onAdd) {
4170 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.onAdd();
4171 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
4172  
4173 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return this;
4174 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
4175  
4176 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
4177 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Removes an element from the DOM.
4178 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
4179 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @private
4180 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {SVGDOMElement|HTMLDOMElement} element The DOM node to remove.
4181 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
4182 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { safeRemoveChild: function(element) {
4183 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var parentNode = element.parentNode;
4184 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (parentNode) {
4185 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { parentNode.removeChild(element);
4186 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
4187 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
4188  
4189 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
4190 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Destroy the element and element wrapper and clear up the DOM and event
4191 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * hooks.
4192 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
4193 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {void}
4194 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
4195 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { destroy: function() {
4196 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var wrapper = this,
4197 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { element = wrapper.element || {},
4198 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { parentToClean =
4199 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper.renderer.isSVG &&
4200 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { element.nodeName === 'SPAN' &&
4201 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper.parentGroup,
4202 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { grandParent,
4203 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ownerSVGElement = element.ownerSVGElement,
4204 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { i;
4205  
4206 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // remove events
4207 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { element.onclick = element.onmouseout = element.onmouseover =
4208 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { element.onmousemove = element.point = null;
4209 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { stop(wrapper); // stop running animations
4210  
4211 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (wrapper.clipPath && ownerSVGElement) {
4212 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Look for existing references to this clipPath and remove them
4213 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // before destroying the element (#6196).
4214 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { each(
4215 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { ownerSVGElement.querySelectorAll('[clip-path]'),
4216 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { function(el) {
4217 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Include the closing paranthesis in the test to rule out
4218 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // id's from 10 and above (#6550)
4219 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (el.getAttribute('clip-path')
4220 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { .indexOf(wrapper.clipPath.element.id + ')') > -1) {
4221 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { el.removeAttribute('clip-path');
4222 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
4223 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
4224 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { );
4225 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper.clipPath = wrapper.clipPath.destroy();
4226 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
4227  
4228 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // Destroy stops in case this is a gradient object
4229 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (wrapper.stops) {
4230 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { for (i = 0; i < wrapper.stops.length; i++) {
4231 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper.stops[i] = wrapper.stops[i].destroy();
4232 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
4233 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper.stops = null;
4234 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
4235  
4236 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // remove element
4237 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper.safeRemoveChild(element);
4238  
4239  
4240 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper.destroyShadows();
4241  
4242  
4243 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // In case of useHTML, clean up empty containers emulating SVG groups (#1960, #2393, #2697).
4244 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { while (parentToClean && parentToClean.div && parentToClean.div.childNodes.length === 0) {
4245 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { grandParent = parentToClean.parentGroup;
4246 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { wrapper.safeRemoveChild(parentToClean.div);
4247 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { delete parentToClean.div;
4248 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { parentToClean = grandParent;
4249 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
4250  
4251 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // remove from alignObjects
4252 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (wrapper.alignTo) {
4253 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { erase(wrapper.renderer.alignedObjects, wrapper);
4254 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { }
4255  
4256 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { objectEach(wrapper, function(val, key) {
4257 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { delete wrapper[key];
4258 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { });
4259  
4260 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { return null;
4261 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { },
4262  
4263  
4264 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
4265 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @typedef {Object} ShadowOptions
4266 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @property {string} [color=#000000] The shadow color.
4267 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @property {number} [offsetX=1] The horizontal offset from the element.
4268 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @property {number} [offsetY=1] The vertical offset from the element.
4269 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @property {number} [opacity=0.15] The shadow opacity.
4270 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @property {number} [width=3] The shadow width or distance from the
4271 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * element.
4272 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
4273 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { /**
4274 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * Add a shadow to the element. Must be called after the element is added to
4275 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * the DOM. In styled mode, this method is not used, instead use `defs` and
4276 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * filters.
4277 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
4278 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {boolean|ShadowOptions} shadowOptions The shadow options. If
4279 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * `true`, the default options are applied. If `false`, the current
4280 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * shadow will be removed.
4281 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {Highcharts.SVGElement} [group] The SVG group element where the shadows will
4282 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * be applied. The default is to add it to the same parent as the current
4283 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * element. Internally, this is ised for pie slices, where all the
4284 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * shadows are added to an element behind all the slices.
4285 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @param {boolean} [cutOff] Used internally for column shadows.
4286 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
4287 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @returns {Highcharts.SVGElement} Returns the SVGElement for chaining.
4288 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { *
4289 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * @example
4290 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * renderer.rect(10, 100, 100, 100)
4291 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * .attr({ fill: 'red' })
4292 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { * .shadow(true);
4293 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { */
4294 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { shadow: function(shadowOptions, group, cutOff) {
4295 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { var shadows = [],
4296 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { i,
4297 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { shadow,
4298 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { element = this.element,
4299 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { strokeWidth,
4300 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { shadowWidth,
4301 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { shadowElementOpacity,
4302  
4303 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { // compensate for inverted plot area
4304 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { transform;
4305  
4306 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { if (!shadowOptions) {
4307 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { this.destroyShadows();
4308  
4309 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { } else if (!this.shadows) {
4310 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { shadowWidth = pick(shadowOptions.width, 3);
4311 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { shadowElementOpacity = (shadowOptions.opacity || 0.15) / shadowWidth;
4312 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { transform = this.parentInverted ?
4313 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { '(-1,-1)' :
4314 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { '(' + pick(shadowOptions.offsetX, 1) + ', ' + pick(shadowOptions.offsetY, 1) + ')';
4315 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) { for (i = 1; i <= shadowWidth; i++) {
4316 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { shadow = element.cloneNode(0);
4317 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { strokeWidth = (shadowWidth * 2) + 1 - (2 * i);
4318 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { attr(shadow, {
4319 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { 'isShadow': 'true',
4320 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { 'stroke': shadowOptions.color || '#000000',
4321 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { 'stroke-opacity': shadowElementOpacity * i,
4322 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { 'stroke-width': strokeWidth,
4323 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { 'transform': 'translate' + transform,
4324 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { 'fill': 'none'
4325 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { });
4326 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (cutOff) {
4327 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { attr(shadow, 'height', Math.max(attr(shadow, 'height') - strokeWidth, 0));
4328 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { shadow.cutHeight = strokeWidth;
4329 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4330  
4331 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (group) {
4332 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { group.element.appendChild(shadow);
4333 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { } else {
4334 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { element.parentNode.insertBefore(shadow, element);
4335 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4336  
4337 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { shadows.push(shadow);
4338 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4339  
4340 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { this.shadows = shadows;
4341 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4342 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { return this;
4343  
4344 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { },
4345  
4346 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { /**
4347 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { * Destroy shadows on the element.
4348 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { * @private
4349 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { */
4350 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { destroyShadows: function() {
4351 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { each(this.shadows || [], function(shadow) {
4352 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { this.safeRemoveChild(shadow);
4353 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }, this);
4354 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { this.shadows = undefined;
4355 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { },
4356  
4357  
4358  
4359 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { xGetter: function(key) {
4360 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (this.element.nodeName === 'circle') {
4361 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (key === 'x') {
4362 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { key = 'cx';
4363 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { } else if (key === 'y') {
4364 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { key = 'cy';
4365 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4366 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4367 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { return this._defaultGetter(key);
4368 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { },
4369  
4370 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { /**
4371 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { * Get the current value of an attribute or pseudo attribute, used mainly
4372 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { * for animation. Called internally from the {@link
4373 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { * Highcharts.SVGRenderer#attr}
4374 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { * function.
4375 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { *
4376 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { * @private
4377 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { */
4378 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { _defaultGetter: function(key) {
4379 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { var ret = pick(this[key], this.element ? this.element.getAttribute(key) : null, 0);
4380  
4381 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (/^[\-0-9\.]+$/.test(ret)) { // is numerical
4382 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { ret = parseFloat(ret);
4383 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4384 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { return ret;
4385 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { },
4386  
4387  
4388 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { dSetter: function(value, key, element) {
4389 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (value && value.join) { // join path
4390 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { value = value.join(' ');
4391 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4392 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (/(NaN| {2}|^$)/.test(value)) {
4393 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { value = 'M 0 0';
4394 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4395 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { element.setAttribute(key, value);
4396  
4397 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { this[key] = value;
4398 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { },
4399  
4400 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { dashstyleSetter: function(value) {
4401 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { var i,
4402 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { strokeWidth = this['stroke-width'];
4403  
4404 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { // If "inherit", like maps in IE, assume 1 (#4981). With HC5 and the new strokeWidth
4405 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { // function, we should be able to use that instead.
4406 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (strokeWidth === 'inherit') {
4407 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { strokeWidth = 1;
4408 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4409 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { value = value && value.toLowerCase();
4410 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (value) {
4411 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { value = value
4412 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { .replace('shortdashdotdot', '3,1,1,1,1,1,')
4413 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { .replace('shortdashdot', '3,1,1,1')
4414 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { .replace('shortdot', '1,1,')
4415 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { .replace('shortdash', '3,1,')
4416 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { .replace('longdash', '8,3,')
4417 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { .replace(/dot/g, '1,3,')
4418 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { .replace('dash', '4,3,')
4419 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { .replace(/,$/, '')
4420 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { .split(','); // ending comma
4421  
4422 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { i = value.length;
4423 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { while (i--) {
4424 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { value[i] = pInt(value[i]) * strokeWidth;
4425 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4426 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { value = value.join(',')
4427 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { .replace(/NaN/g, 'none'); // #3226
4428 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { this.element.setAttribute('stroke-dasharray', value);
4429 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4430 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { },
4431  
4432 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { alignSetter: function(value) {
4433 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { var convert = {
4434 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { left: 'start',
4435 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { center: 'middle',
4436 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { right: 'end'
4437 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { };
4438 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { this.element.setAttribute('text-anchor', convert[value]);
4439 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { },
4440 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { opacitySetter: function(value, key, element) {
4441 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { this[key] = value;
4442 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { element.setAttribute(key, value);
4443 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { },
4444 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { titleSetter: function(value) {
4445 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { var titleNode = this.element.getElementsByTagName('title')[0];
4446 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (!titleNode) {
4447 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { titleNode = doc.createElementNS(this.SVG_NS, 'title');
4448 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { this.element.appendChild(titleNode);
4449 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4450  
4451 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { // Remove text content if it exists
4452 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (titleNode.firstChild) {
4453 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { titleNode.removeChild(titleNode.firstChild);
4454 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4455  
4456 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { titleNode.appendChild(
4457 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { doc.createTextNode(
4458 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { (String(pick(value), '')).replace(/<[^>]*>/g, '') // #3276, #3895
4459 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { )
4460 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { );
4461 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { },
4462 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { textSetter: function(value) {
4463 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (value !== this.textStr) {
4464 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { // Delete bBox memo when the text changes
4465 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { delete this.bBox;
4466  
4467 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { this.textStr = value;
4468 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (this.added) {
4469 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { this.renderer.buildText(this);
4470 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4471 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4472 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { },
4473 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { fillSetter: function(value, key, element) {
4474 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (typeof value === 'string') {
4475 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { element.setAttribute(key, value);
4476 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { } else if (value) {
4477 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { this.colorGradient(value, key, element);
4478 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4479 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { },
4480 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { visibilitySetter: function(value, key, element) {
4481 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { // IE9-11 doesn't handle visibilty:inherit well, so we remove the attribute instead (#2881, #3909)
4482 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (value === 'inherit') {
4483 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { element.removeAttribute(key);
4484 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { } else {
4485 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { element.setAttribute(key, value);
4486 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4487 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { },
4488 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { zIndexSetter: function(value, key) {
4489 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { var renderer = this.renderer,
4490 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { parentGroup = this.parentGroup,
4491 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { parentWrapper = parentGroup || renderer,
4492 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { parentNode = parentWrapper.element || renderer.box,
4493 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { childNodes,
4494 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { otherElement,
4495 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { otherZIndex,
4496 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { element = this.element,
4497 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { inserted,
4498 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { run = this.added,
4499 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { i;
4500  
4501 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (defined(value)) {
4502 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { element.zIndex = value; // So we can read it for other elements in the group
4503 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { value = +value;
4504 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (this[key] === value) { // Only update when needed (#3865)
4505 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { run = false;
4506 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4507 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { this[key] = value;
4508 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4509  
4510 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { // Insert according to this and other elements' zIndex. Before .add() is called,
4511 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { // nothing is done. Then on add, or by later calls to zIndexSetter, the node
4512 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { // is placed on the right place in the DOM.
4513 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (run) {
4514 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { value = this.zIndex;
4515  
4516 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { if (value && parentGroup) {
4517 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { parentGroup.handleZ = true;
4518 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { }
4519  
4520 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { childNodes = parentNode.childNodes;
4521 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) { for (i = 0; i < childNodes.length && !inserted; i++) {
4522 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) { otherElement = childNodes[i];
4523 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) { otherZIndex = otherElement.zIndex;
4524 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) { if (otherElement !== element && (
4525 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) { // Insert before the first element with a higher zIndex
4526 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) { pInt(otherZIndex) > value ||
4527 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) { // If no zIndex given, insert before the first element with a zIndex
4528 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) { (!defined(value) && defined(otherZIndex)) ||
4529 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) { // Negative zIndex versus no zIndex:
4530 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) { // On all levels except the highest. If the parent is ,
4531 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) { // then we don't want to put items before or
4532 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) { (value < 0 && !defined(otherZIndex) && parentNode !== renderer.box)
4533  
4534 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) )) {
4535 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) parentNode.insertBefore(element, otherElement);
4536 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) inserted = true;
4537 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) }
4538 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) }
4539 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) if (!inserted) {
4540 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) parentNode.appendChild(element);
4541 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) }
4542 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) }
4543 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) return inserted;
4544 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) },
4545 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) _defaultSetter: function(value, key, element) {
4546 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) element.setAttribute(key, value);
4547 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) }
4548 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) });
4549  
4550 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) // Some shared setters and getters
4551 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) SVGElement.prototype.yGetter = SVGElement.prototype.xGetter;
4552 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) SVGElement.prototype.translateXSetter = SVGElement.prototype.translateYSetter =
4553 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) SVGElement.prototype.rotationSetter = SVGElement.prototype.verticalAlignSetter =
4554 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) SVGElement.prototype.scaleXSetter = SVGElement.prototype.scaleYSetter = function(value, key) {
4555 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) this[key] = value;
4556 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) this.doTransform = true;
4557 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) };
4558  
4559  
4560 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) // WebKit and Batik have problems with a stroke-width of zero, so in this case we remove the
4561 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) // stroke attribute altogether. #1270, #1369, #3065, #3072.
4562 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) SVGElement.prototype['stroke-widthSetter'] = SVGElement.prototype.strokeSetter = function(value, key, element) {
4563 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) this[key] = value;
4564 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) // Only apply the stroke attribute if the stroke width is defined and larger than 0
4565 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) if (this.stroke && this['stroke-width']) {
4566 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) SVGElement.prototype.fillSetter.call(this, this.stroke, 'stroke', element); // use prototype as instance may be overridden
4567 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) element.setAttribute('stroke-width', this['stroke-width']);
4568 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) this.hasStroke = true;
4569 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) } else if (key === 'stroke-width' && value === 0 && this.hasStroke) {
4570 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) element.removeAttribute('stroke');
4571 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) this.hasStroke = false;
4572 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) }
4573 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) };
4574  
4575  
4576 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) /**
4577 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * Allows direct access to the Highcharts rendering layer in order to draw
4578 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * primitive shapes like circles, rectangles, paths or text directly on a chart,
4579 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * or independent from any chart. The SVGRenderer represents a wrapper object
4580 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * for SVGin modern browsers and through the VMLRenderer, for VML in IE < 8.
4581 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) *
4582 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * An existing chart's renderer can be accessed through {@link Chart#renderer}.
4583 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * The renderer can also be used completely decoupled from a chart.
4584 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) *
4585 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * @param {HTMLDOMElement} container - Where to put the SVG in the web page.
4586 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * @param {number} width - The width of the SVG.
4587 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * @param {number} height - The height of the SVG.
4588 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * @param {boolean} [forExport=false] - Whether the rendered content is intended
4589 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * for export.
4590 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * @param {boolean} [allowHTML=true] - Whether the renderer is allowed to
4591 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * include HTML text, which will be projected on top of the SVG.
4592 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) *
4593 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * @example
4594 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * // Use directly without a chart object.
4595 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * var renderer = new Highcharts.Renderer(parentNode, 600, 400);
4596 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) *
4597 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * @sample highcharts/members/renderer-on-chart - Annotating a chart programmatically.
4598 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * @sample highcharts/members/renderer-basic - Independedt SVG drawing.
4599 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) *
4600 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * @class Highcharts.SVGRenderer
4601 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) */
4602 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) SVGRenderer = H.SVGRenderer = function() {
4603 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) this.init.apply(this, arguments);
4604 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) };
4605 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) extend(SVGRenderer.prototype, /** @lends Highcharts.SVGRenderer.prototype */ {
4606 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) /**
4607 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * A pointer to the renderer's associated Element class. The VMLRenderer
4608 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * will have a pointer to VMLElement here.
4609 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * @type {Highcharts.SVGElement}
4610 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) */
4611 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) Element: SVGElement,
4612 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) SVG_NS: SVG_NS,
4613 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) /**
4614 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * Initialize the SVGRenderer. Overridable initiator function that takes
4615 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * the same parameters as the constructor.
4616 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) */
4617 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) init: function(container, width, height, style, forExport, allowHTML) {
4618 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) var renderer = this,
4619 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) boxWrapper,
4620 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) element,
4621 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) desc;
4622  
4623 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) boxWrapper = renderer.createElement('svg')
4624 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) .attr({
4625 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) 'version': '1.1',
4626 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) 'class': 'highcharts-root'
4627 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) })
4628  
4629 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) .css(this.getStyle(style));
4630 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) element = boxWrapper.element;
4631 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) container.appendChild(element);
4632  
4633 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) // For browsers other than IE, add the namespace attribute (#1978)
4634 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) if (container.innerHTML.indexOf('xmlns') === -1) {
4635 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) attr(element, 'xmlns', this.SVG_NS);
4636 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) }
4637  
4638 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) // object properties
4639 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) renderer.isSVG = true;
4640  
4641 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) /**
4642 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * The root `svg` node of the renderer.
4643 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * @type {SVGDOMElement}
4644 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) */
4645 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) this.box = element;
4646 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) /**
4647 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * The wrapper for the root `svg` node of the renderer.
4648 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * @type {Highcharts.SVGElement}
4649 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) */
4650 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) this.boxWrapper = boxWrapper;
4651 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) renderer.alignedObjects = [];
4652  
4653 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) /**
4654 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * Page url used for internal references.
4655 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * @type {string}
4656 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) */
4657 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) // #24, #672, #1070
4658 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) this.url = (isFirefox || isWebKit) && doc.getElementsByTagName('base').length ?
4659 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) win.location.href
4660 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) .replace(/#.*?$/, '') // remove the hash
4661 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) .replace(/<[^>]*>/g, '') // wing cut HTML
4662 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) .replace(/([\('\)])/g, '\\$1') // escape parantheses and quotes
4663 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) .replace(/ /g, '%20') : // replace spaces (needed for Safari only)
4664 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) '';
4665  
4666 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) // Add description
4667 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) desc = this.createElement('desc').add();
4668 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) desc.element.appendChild(doc.createTextNode('Created with Highmaps 5.0.12'));
4669  
4670  
4671 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) renderer.defs = this.createElement('defs').add();
4672 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) renderer.allowHTML = allowHTML;
4673 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) renderer.forExport = forExport;
4674 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) renderer.gradients = {}; // Object where gradient SvgElements are stored
4675 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) renderer.cache = {}; // Cache for numerical bounding boxes
4676 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) renderer.cacheKeys = [];
4677 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) renderer.imgCount = 0;
4678  
4679 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) renderer.setSize(width, height, false);
4680  
4681  
4682  
4683 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) // Issue 110 workaround:
4684 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) // In Firefox, if a div is positioned by percentage, its pixel position may land
4685 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) // between pixels. The container itself doesn't display this, but an SVG element
4686 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) // inside this container will be drawn at subpixel precision. In order to draw
4687 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) // sharp lines, this must be compensated for. This doesn't seem to work inside
4688 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) // iframes though (like in jsFiddle).
4689 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) var subPixelFix, rect;
4690 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) if (isFirefox && container.getBoundingClientRect) {
4691 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) subPixelFix = function() {
4692 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) css(container, {
4693 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) left: 0,
4694 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) top: 0
4695 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) });
4696 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) rect = container.getBoundingClientRect();
4697 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) css(container, {
4698 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) left: (Math.ceil(rect.left) - rect.left) + 'px',
4699 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) top: (Math.ceil(rect.top) - rect.top) + 'px'
4700 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) });
4701 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) };
4702  
4703 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) // run the fix now
4704 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) subPixelFix();
4705  
4706 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) // run it on resize
4707 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) renderer.unSubPixelFix = addEvent(win, 'resize', subPixelFix);
4708 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) }
4709 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) },
4710  
4711  
4712  
4713 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) /**
4714 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * Get the global style setting for the renderer.
4715 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * @private
4716 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * @param {CSSObject} style - Style settings.
4717 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * @return {CSSObject} The style settings mixed with defaults.
4718 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) */
4719 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) getStyle: function(style) {
4720 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) this.style = extend({
4721  
4722 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) fontFamily: '"Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif', // default font
4723 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) fontSize: '12px'
4724  
4725 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) }, style);
4726 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) return this.style;
4727 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) },
4728 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) /**
4729 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * Apply the global style on the renderer, mixed with the default styles.
4730 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * @param {CSSObject} style - CSS to apply.
4731 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) */
4732 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) setStyle: function(style) {
4733 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) this.boxWrapper.css(this.getStyle(style));
4734 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) },
4735  
4736  
4737 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) /**
4738 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * Detect whether the renderer is hidden. This happens when one of the
4739 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * parent elements has display: none. Used internally to detect when we need
4740 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * to render preliminarily in another div to get the text bounding boxes
4741 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * right.
4742 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) *
4743 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * @returns {boolean} True if it is hidden.
4744 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) */
4745 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) isHidden: function() { // #608
4746 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) return !this.boxWrapper.getBBox().width;
4747 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) },
4748  
4749 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) /**
4750 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * Destroys the renderer and its allocated members.
4751 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) */
4752 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) destroy: function() {
4753 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) var renderer = this,
4754 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) rendererDefs = renderer.defs;
4755 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) renderer.box = null;
4756 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) renderer.boxWrapper = renderer.boxWrapper.destroy();
4757  
4758 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) // Call destroy on all gradient elements
4759 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) destroyObjectProperties(renderer.gradients || {});
4760 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) renderer.gradients = null;
4761  
4762 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) // Defs are null in VMLRenderer
4763 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) // Otherwise, destroy them here.
4764 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) if (rendererDefs) {
4765 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) renderer.defs = rendererDefs.destroy();
4766 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) }
4767  
4768 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) // Remove sub pixel fix handler (#982)
4769 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) if (renderer.unSubPixelFix) {
4770 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) renderer.unSubPixelFix();
4771 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) }
4772  
4773 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) renderer.alignedObjects = null;
4774  
4775 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) return null;
4776 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) },
4777  
4778 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) /**
4779 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * Create a wrapper for an SVG element. Serves as a factory for
4780 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * {@link SVGElement}, but this function is itself mostly called from
4781 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * primitive factories like {@link SVGRenderer#path}, {@link
4782 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * SVGRenderer#rect} or {@link SVGRenderer#text}.
4783 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) *
4784 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * @param {string} nodeName - The node name, for example `rect`, `g` etc.
4785 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * @returns {Highcharts.SVGElement} The generated SVGElement.
4786 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) */
4787 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) createElement: function(nodeName) {
4788 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) var wrapper = new this.Element();
4789 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) wrapper.init(this, nodeName);
4790 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) return wrapper;
4791 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) },
4792  
4793 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) /**
4794 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * Dummy function for plugins, called every time the renderer is updated.
4795 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * Prior to Highcharts 5, this was used for the canvg renderer.
4796 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * @function
4797 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) */
4798 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) draw: noop,
4799  
4800 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) /**
4801 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * Get converted radial gradient attributes according to the radial
4802 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * reference. Used internally from the {@link SVGElement#colorGradient}
4803 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * function.
4804 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) *
4805 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * @private
4806 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) */
4807 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) getRadialAttr: function(radialReference, gradAttr) {
4808 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) return {
4809 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) cx: (radialReference[0] - radialReference[2] / 2) + gradAttr.cx * radialReference[2],
4810 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) cy: (radialReference[1] - radialReference[2] / 2) + gradAttr.cy * radialReference[2],
4811 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) r: gradAttr.r * radialReference[2]
4812 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) };
4813 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) },
4814  
4815 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) getSpanWidth: function(wrapper, tspan) {
4816 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) var renderer = this,
4817 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) bBox = wrapper.getBBox(true),
4818 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) actualWidth = bBox.width;
4819  
4820 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) // Old IE cannot measure the actualWidth for SVG elements (#2314)
4821 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) if (!svg && renderer.forExport) {
4822 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) actualWidth = renderer.measureSpanWidth(tspan.firstChild.data, wrapper.styles);
4823 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) }
4824 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) return actualWidth;
4825 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) },
4826  
4827 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) applyEllipsis: function(wrapper, tspan, text, width) {
4828 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) var renderer = this,
4829 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) actualWidth = renderer.getSpanWidth(wrapper, tspan),
4830 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) wasTooLong = actualWidth > width,
4831 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) str = text,
4832 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) currentIndex,
4833 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) minIndex = 0,
4834 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) maxIndex = text.length,
4835 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) updateTSpan = function(s) {
4836 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) tspan.removeChild(tspan.firstChild);
4837 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) if (s) {
4838 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) tspan.appendChild(doc.createTextNode(s));
4839 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) }
4840 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) };
4841 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) if (wasTooLong) {
4842 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) while (minIndex <= maxIndex) {
4843 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) currentIndex = Math.ceil((minIndex + maxIndex) / 2);
4844 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) str = text.substring(0, currentIndex) + '\u2026';
4845 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) updateTSpan(str);
4846 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) actualWidth = renderer.getSpanWidth(wrapper, tspan);
4847 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) if (minIndex === maxIndex) {
4848 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) // Complete
4849 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) minIndex = maxIndex + 1;
4850 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) } else if (actualWidth > width) {
4851 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) // Too large. Set max index to current.
4852 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) maxIndex = currentIndex - 1;
4853 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) } else {
4854 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) // Within width. Set min index to current.
4855 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) minIndex = currentIndex;
4856 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) }
4857 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) }
4858 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) // If max index was 0 it means just ellipsis was also to large.
4859 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) if (maxIndex === 0) {
4860 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) // Remove ellipses.
4861 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) updateTSpan('');
4862 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) }
4863 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) }
4864 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) return wasTooLong;
4865 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) },
4866  
4867 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) /**
4868 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * Parse a simple HTML string into SVG tspans. Called internally when text
4869 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * is set on an SVGElement. The function supports a subset of HTML tags,
4870 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * CSS text features like `width`, `text-overflow`, `white-space`, and
4871 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * also attributes like `href` and `style`.
4872 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * @private
4873 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) * @param {Highcharts.SVGElement} wrapper The parent SVGElement.
4874 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) */
4875 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) buildText: function(wrapper) {
4876 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) var textNode = wrapper.element,
4877 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) renderer = this,
4878 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) forExport = renderer.forExport,
4879 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) textStr = pick(wrapper.textStr, '').toString(),
4880 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box) hasMarkup = textStr.indexOf('<') !== -1,
4881 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1, lines,
4882 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1, childNodes = textNode.childNodes,
4883 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1, clsRegex,
4884 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1, styleRegex,
4885 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1, hrefRegex,
4886 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1, wasTooLong,
4887 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1, parentX = attr(textNode, 'x'),
4888 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1, textStyles = wrapper.styles,
4889 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1, width = wrapper.textWidth,
4890 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1, textLineHeight = textStyles && textStyles.lineHeight,
4891 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1, textOutline = textStyles && textStyles.textOutline,
4892 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1, ellipsis = textStyles && textStyles.textOverflow === 'ellipsis',
4893 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1, noWrap = textStyles && textStyles.whiteSpace === 'nowrap',
4894 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1, fontSize = textStyles && textStyles.fontSize,
4895 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1, textCache,
4896 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1, isSubsequentLine,
4897 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1, i = childNodes.length,
4898 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1, tempParent = width && !wrapper.added && this.box,
4899 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1, getLineHeight = function(tspan) {
4900 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1, var fontSizeStyle;
4901  
4902 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1, fontSizeStyle = /(px|em)$/.test(tspan && tspan.style.fontSize) ?
4903 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1, tspan.style.fontSize :
4904 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1, (fontSize || renderer.style.fontSize || 12);
4905  
4906  
4907 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1, return textLineHeight ?
4908 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1, pInt(textLineHeight) :
4909 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1, renderer.fontMetrics(
4910 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1, fontSizeStyle,
4911 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1, // Get the computed size from parent if not explicit
4912 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1, tspan.getAttribute('style') ? tspan : textNode
4913 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1, ).h;
4914 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1, },
4915 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1, unescapeAngleBrackets = function(inputStr) {
4916 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1, return inputStr.replace(/&lt;/g, '<').replace(/&gt;/g, '>');
4917 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/ };
4918  
4919 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/ // The buildText code is quite heavy, so if we're not changing something
4920 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/ // that affects the text, skip it (#6113).
4921 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/ textCache = [
4922 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/ textStr,
4923 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/ ellipsis,
4924 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/ noWrap,
4925 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/ textLineHeight,
4926 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/ textOutline,
4927 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/ fontSize,
4928 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/ width
4929 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/ ].join(',');
4930 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/ if (textCache === wrapper.textCache) {
4931 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/ return;
4932 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/ }
4933 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/ wrapper.textCache = textCache;
4934  
4935 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/ /// remove old text
4936 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/ while (i--) {
4937 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/ textNode.removeChild(childNodes[i]);
4938 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/ }
4939  
4940 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/ // Skip tspans, add text directly to text node. The forceTSpan is a hook
4941 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/ // used in text outline hack.
4942 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/ if (!hasMarkup && !textOutline && !ellipsis && !width && textStr.indexOf(' ') === -1) {
4943 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/ textNode.appendChild(doc.createTextNode(unescapeAngleBrackets(textStr)));
4944  
4945 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/ // Complex strings, add more logic
4946 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/ } else {
4947  
4948 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/ clsRegex = /<.*class="([^"]+)".*>/;
4949 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*> styleRegex = /<.*style="([^"]+)".*>/;
4950 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*> hrefRegex = /<.*href="([^"]+)".*>/;
4951  
4952 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*> if (tempParent) {
4953 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*> tempParent.appendChild(textNode); // attach it to the DOM to read offset width
4954 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*> }
4955  
4956 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*> if (hasMarkup) {
4957 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*> lines = textStr
4958  
4959 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*> .replace(/<(b|strong)>/g, '<span style="font-weight:bold">')
4960 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)> .replace(/<(i|em)>/g, '<span style="font-style:italic">')
4961  
4962 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)> .replace(/g, '<span')
4963 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)> .replace(/<\/(b|strong|i|em|a)>/g, '</span>')
4964 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)> .split(//g);
4965  
4966 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)> } else {
4967 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)> lines = [textStr];
4968 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)> }
4969  
4970  
4971 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)> // Trim empty lines (#5261)
4972 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)> lines = grep(lines, function(line) {
4973 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)> return line !== '';
4974 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)> });
4975  
4976  
4977 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)> // build the lines
4978 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)> each(lines, function buildTextLines(line, lineNo) {
4979 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)> var spans,
4980 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)> spanNo = 0;
4981 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)> line = line
4982 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)> .replace(/^\s+|\s+$/g, '') // Trim to prevent useless/costly process on the spaces (#5258)
4983 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)> .replace(/g, '|||<span')
4984 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)> .replace(/<\/span>/g, '</span>|||');
4985 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> spans = line.split('|||');
4986  
4987 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> each(spans, function buildTextSpans(span) {
4988 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> if (span !== '' || spans.length === 1) {
4989 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> var attributes = {},
4990 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> tspan = doc.createElementNS(renderer.SVG_NS, 'tspan'),
4991 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> spanCls,
4992 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> spanStyle; // #390
4993 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> if (clsRegex.test(span)) {
4994 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> spanCls = span.match(clsRegex)[1];
4995 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> attr(tspan, 'class', spanCls);
4996 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> }
4997 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> if (styleRegex.test(span)) {
4998 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> spanStyle = span.match(styleRegex)[1].replace(/(;| |^)color([ :])/, '$1fill$2');
4999 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> attr(tspan, 'style', spanStyle);
5000 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> }
5001 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> if (hrefRegex.test(span) && !forExport) { // Not for export - #1529
5002 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> attr(tspan, 'onclick', 'location.href=\"' + span.match(hrefRegex)[1] + '\"');
5003 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> css(tspan, {
5004 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> cursor: 'pointer'
5005 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> });
5006 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> }
5007  
5008 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span> span = unescapeAngleBrackets(span.replace(/<(.|\n)*?>/g, '') || ' ');
5009  
5010 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Nested tags aren't supported, and cause crash in Safari (#1596)
5011 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (span !== ' ') {
5012  
5013 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // add the text node
5014 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> tspan.appendChild(doc.createTextNode(span));
5015  
5016 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (!spanNo) { // first span in a line, align it to the left
5017 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (lineNo && parentX !== null) {
5018 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> attributes.x = parentX;
5019 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5020 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> } else {
5021 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> attributes.dx = 0; // #16
5022 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5023  
5024 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // add attributes
5025 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> attr(tspan, attributes);
5026  
5027 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Append it
5028 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> textNode.appendChild(tspan);
5029  
5030 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // first span on subsequent line, add the line height
5031 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (!spanNo && isSubsequentLine) {
5032  
5033 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // allow getting the right offset height in exporting in IE
5034 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (!svg && forExport) {
5035 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> css(tspan, {
5036 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> display: 'block'
5037 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> });
5038 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5039  
5040 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Set the line height based on the font size of either
5041 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // the text element or the tspan element
5042 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> attr(
5043 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> tspan,
5044 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> 'dy',
5045 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> getLineHeight(tspan)
5046 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> );
5047 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5048  
5049 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /*if (width) {
5050 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> renderer.breakText(wrapper, width);
5051 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }*/
5052  
5053 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Check width and apply soft breaks or ellipsis
5054 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (width) {
5055 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> var words = span.replace(/([^\^])-/g, '$1- ').split(' '), // #1273
5056 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> hasWhiteSpace = spans.length > 1 || lineNo || (words.length > 1 && !noWrap),
5057 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> tooLong,
5058 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> rest = [],
5059 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> actualWidth,
5060 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> dy = getLineHeight(tspan),
5061 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> rotation = wrapper.rotation;
5062  
5063 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (ellipsis) {
5064 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> wasTooLong = renderer.applyEllipsis(wrapper, tspan, span, width);
5065 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5066  
5067 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> while (!ellipsis && hasWhiteSpace && (words.length || rest.length)) {
5068 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> wrapper.rotation = 0; // discard rotation when computing box
5069 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> actualWidth = renderer.getSpanWidth(wrapper, tspan);
5070 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> tooLong = actualWidth > width;
5071  
5072 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // For ellipsis, do a binary search for the correct string length
5073 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (wasTooLong === undefined) {
5074 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> wasTooLong = tooLong; // First time
5075 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5076  
5077 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Looping down, this is the first word sequence that is not too long,
5078 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // so we can move on to build the next line.
5079 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (!tooLong || words.length === 1) {
5080 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> words = rest;
5081 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> rest = [];
5082  
5083 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (words.length && !noWrap) {
5084 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> tspan = doc.createElementNS(SVG_NS, 'tspan');
5085 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> attr(tspan, {
5086 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> dy: dy,
5087 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> x: parentX
5088 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> });
5089 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (spanStyle) { // #390
5090 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> attr(tspan, 'style', spanStyle);
5091 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5092 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> textNode.appendChild(tspan);
5093 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5094 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (actualWidth > width) { // a single word is pressing it out
5095 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> width = actualWidth;
5096 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5097 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> } else { // append to existing line tspan
5098 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> tspan.removeChild(tspan.firstChild);
5099 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> rest.unshift(words.pop());
5100 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5101 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (words.length) {
5102 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> tspan.appendChild(doc.createTextNode(words.join(' ').replace(/- /g, '-')));
5103 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5104 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5105 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> wrapper.rotation = rotation;
5106 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5107  
5108 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> spanNo++;
5109 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5110 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5111 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> });
5112 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // To avoid beginning lines that doesn't add to the textNode (#6144)
5113 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> isSubsequentLine = isSubsequentLine || textNode.childNodes.length;
5114 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> });
5115  
5116 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (wasTooLong) {
5117 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> wrapper.attr('title', wrapper.textStr);
5118 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5119 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (tempParent) {
5120 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> tempParent.removeChild(textNode); // attach it to the DOM to read offset width
5121 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5122  
5123 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Apply the text outline
5124 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (textOutline && wrapper.applyTextOutline) {
5125 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> wrapper.applyTextOutline(textOutline);
5126 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5127 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5128 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> },
5129  
5130  
5131  
5132 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /*
5133 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> breakText: function (wrapper, width) {
5134 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> var bBox = wrapper.getBBox(),
5135 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> node = wrapper.element,
5136 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> textLength = node.textContent.length,
5137 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> pos = Math.round(width * textLength / bBox.width), // try this position first, based on average character width
5138 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> increment = 0,
5139 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> finalPos;
5140  
5141 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (bBox.width > width) {
5142 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> while (finalPos === undefined) {
5143 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> textLength = node.getSubStringLength(0, pos);
5144  
5145 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (textLength <= width) {
5146 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (increment === -1) {
5147 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> finalPos = pos;
5148 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> } else {
5149 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> increment = 1;
5150 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5151 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> } else {
5152 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (increment === 1) {
5153 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> finalPos = pos - 1;
5154 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> } else {
5155 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> increment = -1;
5156 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5157 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5158 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> pos += increment;
5159 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5160 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5161 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> console.log('width', width, 'stringWidth', node.getSubStringLength(0, finalPos))
5162 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> },
5163 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
5164  
5165 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /**
5166 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Returns white for dark colors and black for bright colors.
5167 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> *
5168 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {ColorString} rgba - The color to get the contrast for.
5169 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @returns {string} The contrast color, either `#000000` or `#FFFFFF`.
5170 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
5171 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> getContrast: function(rgba) {
5172 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> rgba = color(rgba).rgba;
5173  
5174 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // The threshold may be discussed. Here's a proposal for adding
5175 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // different weight to the color channels (#6216)
5176 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /*
5177 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> rgba[0] *= 1; // red
5178 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> rgba[1] *= 1.2; // green
5179 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> rgba[2] *= 0.7; // blue
5180 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
5181  
5182 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> return rgba[0] + rgba[1] + rgba[2] > 2 * 255 ? '#000000' : '#FFFFFF';
5183 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> },
5184  
5185 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /**
5186 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Create a button with preset states.
5187 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {string} text - The text or HTML to draw.
5188 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} x - The x position of the button's left side.
5189 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} y - The y position of the button's top side.
5190 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {Function} callback - The function to execute on button click or
5191 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * touch.
5192 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {SVGAttributes} [normalState] - SVG attributes for the normal
5193 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * state.
5194 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {SVGAttributes} [hoverState] - SVG attributes for the hover state.
5195 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {SVGAttributes} [pressedState] - SVG attributes for the pressed
5196 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * state.
5197 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {SVGAttributes} [disabledState] - SVG attributes for the disabled
5198 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * state.
5199 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {Symbol} [shape=rect] - The shape type.
5200 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @returns {SVGRenderer} The button element.
5201 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
5202 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> button: function(text, x, y, callback, normalState, hoverState, pressedState, disabledState, shape) {
5203 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> var label = this.label(text, x, y, shape, null, null, null, null, 'button'),
5204 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> curState = 0;
5205  
5206 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Default, non-stylable attributes
5207 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> label.attr(merge({
5208 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> 'padding': 8,
5209 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> 'r': 2
5210 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }, normalState));
5211  
5212  
5213 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Presentational
5214 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> var normalStyle,
5215 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> hoverStyle,
5216 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> pressedStyle,
5217 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> disabledStyle;
5218  
5219 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Normal state - prepare the attributes
5220 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> normalState = merge({
5221 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> fill: '#f7f7f7',
5222 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> stroke: '#cccccc',
5223 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> 'stroke-width': 1,
5224 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> style: {
5225 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> color: '#333333',
5226 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> cursor: 'pointer',
5227 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> fontWeight: 'normal'
5228 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5229 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }, normalState);
5230 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> normalStyle = normalState.style;
5231 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> delete normalState.style;
5232  
5233 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Hover state
5234 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> hoverState = merge(normalState, {
5235 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> fill: '#e6e6e6'
5236 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }, hoverState);
5237 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> hoverStyle = hoverState.style;
5238 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> delete hoverState.style;
5239  
5240 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Pressed state
5241 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> pressedState = merge(normalState, {
5242 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> fill: '#e6ebf5',
5243 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> style: {
5244 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> color: '#000000',
5245 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> fontWeight: 'bold'
5246 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5247 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }, pressedState);
5248 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> pressedStyle = pressedState.style;
5249 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> delete pressedState.style;
5250  
5251 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Disabled state
5252 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> disabledState = merge(normalState, {
5253 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> style: {
5254 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> color: '#cccccc'
5255 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5256 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }, disabledState);
5257 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> disabledStyle = disabledState.style;
5258 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> delete disabledState.style;
5259  
5260  
5261 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Add the events. IE9 and IE10 need mouseover and mouseout to funciton (#667).
5262 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> addEvent(label.element, isMS ? 'mouseover' : 'mouseenter', function() {
5263 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (curState !== 3) {
5264 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> label.setState(1);
5265 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5266 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> });
5267 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> addEvent(label.element, isMS ? 'mouseout' : 'mouseleave', function() {
5268 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (curState !== 3) {
5269 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> label.setState(curState);
5270 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5271 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> });
5272  
5273 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> label.setState = function(state) {
5274 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Hover state is temporary, don't record it
5275 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (state !== 1) {
5276 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> label.state = curState = state;
5277 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5278 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Update visuals
5279 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> label.removeClass(/highcharts-button-(normal|hover|pressed|disabled)/)
5280 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> .addClass('highcharts-button-' + ['normal', 'hover', 'pressed', 'disabled'][state || 0]);
5281  
5282  
5283 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> label.attr([normalState, hoverState, pressedState, disabledState][state || 0])
5284 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> .css([normalStyle, hoverStyle, pressedStyle, disabledStyle][state || 0]);
5285  
5286 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> };
5287  
5288  
5289  
5290 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Presentational attributes
5291 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> label
5292 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> .attr(normalState)
5293 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> .css(extend({
5294 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> cursor: 'default'
5295 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }, normalStyle));
5296  
5297  
5298 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> return label
5299 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> .on('click', function(e) {
5300 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (curState !== 3) {
5301 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> callback.call(label, e);
5302 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5303 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> });
5304 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> },
5305  
5306 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /**
5307 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Make a straight line crisper by not spilling out to neighbour pixels.
5308 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> *
5309 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {Array} points - The original points on the format `['M', 0, 0,
5310 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * 'L', 100, 0]`.
5311 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} width - The width of the line.
5312 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @returns {Array} The original points array, but modified to render
5313 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * crisply.
5314 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
5315 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> crispLine: function(points, width) {
5316 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // normalize to a crisp line
5317 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (points[1] === points[4]) {
5318 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Substract due to #1129. Now bottom and left axis gridlines behave the same.
5319 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> points[1] = points[4] = Math.round(points[1]) - (width % 2 / 2);
5320 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5321 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (points[2] === points[5]) {
5322 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> points[2] = points[5] = Math.round(points[2]) + (width % 2 / 2);
5323 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5324 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> return points;
5325 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> },
5326  
5327  
5328 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /**
5329 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Draw a path, wraps the SVG `path` element.
5330 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> *
5331 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {Array} [path] An SVG path definition in array form.
5332 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> *
5333 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @example
5334 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * var path = renderer.path(['M', 10, 10, 'L', 30, 30, 'z'])
5335 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * .attr({ stroke: '#ff00ff' })
5336 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * .add();
5337 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @returns {Highcharts.SVGElement} The generated wrapper element.
5338 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> *
5339 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @sample highcharts/members/renderer-path-on-chart/
5340 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Draw a path in a chart
5341 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @sample highcharts/members/renderer-path/
5342 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Draw a path independent from a chart
5343 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> *
5344 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
5345 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /**
5346 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Draw a path, wraps the SVG `path` element.
5347 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> *
5348 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {SVGAttributes} [attribs] The initial attributes.
5349 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @returns {Highcharts.SVGElement} The generated wrapper element.
5350 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
5351 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> path: function(path) {
5352 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> var attribs = {
5353  
5354 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> fill: 'none'
5355  
5356 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> };
5357 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (isArray(path)) {
5358 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> attribs.d = path;
5359 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> } else if (isObject(path)) { // attributes
5360 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> extend(attribs, path);
5361 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5362 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> return this.createElement('path').attr(attribs);
5363 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> },
5364  
5365 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /**
5366 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Draw a circle, wraps the SVG `circle` element.
5367 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> *
5368 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [x] The center x position.
5369 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [y] The center y position.
5370 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [r] The radius.
5371 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @returns {Highcharts.SVGElement} The generated wrapper element.
5372 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> *
5373 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @sample highcharts/members/renderer-circle/ Drawing a circle
5374 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
5375 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /**
5376 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Draw a circle, wraps the SVG `circle` element.
5377 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> *
5378 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {SVGAttributes} [attribs] The initial attributes.
5379 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @returns {Highcharts.SVGElement} The generated wrapper element.
5380 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
5381 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> circle: function(x, y, r) {
5382 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> var attribs = isObject(x) ? x : {
5383 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> x: x,
5384 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> y: y,
5385 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> r: r
5386 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> },
5387 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> wrapper = this.createElement('circle');
5388  
5389 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Setting x or y translates to cx and cy
5390 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> wrapper.xSetter = wrapper.ySetter = function(value, key, element) {
5391 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> element.setAttribute('c' + key, value);
5392 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> };
5393  
5394 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> return wrapper.attr(attribs);
5395 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> },
5396  
5397 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /**
5398 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Draw and return an arc.
5399 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [x=0] Center X position.
5400 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [y=0] Center Y position.
5401 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [r=0] The outer radius of the arc.
5402 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [innerR=0] Inner radius like used in donut charts.
5403 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [start=0] The starting angle of the arc in radians, where
5404 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * 0 is to the right and `-Math.PI/2` is up.
5405 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [end=0] The ending angle of the arc in radians, where 0
5406 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * is to the right and `-Math.PI/2` is up.
5407 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @returns {Highcharts.SVGElement} The generated wrapper element.
5408 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> *
5409 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @sample highcharts/members/renderer-arc/
5410 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Drawing an arc
5411 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
5412 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /**
5413 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Draw and return an arc. Overloaded function that takes arguments object.
5414 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {SVGAttributes} attribs Initial SVG attributes.
5415 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @returns {Highcharts.SVGElement} The generated wrapper element.
5416 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
5417 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> arc: function(x, y, r, innerR, start, end) {
5418 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> var arc,
5419 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> options;
5420  
5421 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (isObject(x)) {
5422 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> options = x;
5423 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> y = options.y;
5424 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> r = options.r;
5425 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> innerR = options.innerR;
5426 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> start = options.start;
5427 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> end = options.end;
5428 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> x = options.x;
5429 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> } else {
5430 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> options = {
5431 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> innerR: innerR,
5432 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> start: start,
5433 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> end: end
5434 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> };
5435 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5436  
5437 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Arcs are defined as symbols for the ability to set
5438 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // attributes in attr and animate
5439 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> arc = this.symbol('arc', x, y, r, r, options);
5440 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> arc.r = r; // #959
5441 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> return arc;
5442 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> },
5443  
5444 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /**
5445 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Draw and return a rectangle.
5446 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [x] Left position.
5447 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [y] Top position.
5448 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [width] Width of the rectangle.
5449 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [height] Height of the rectangle.
5450 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [r] Border corner radius.
5451 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [strokeWidth] A stroke width can be supplied to allow
5452 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * crisp drawing.
5453 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @returns {Highcharts.SVGElement} The generated wrapper element.
5454 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
5455 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /**
5456 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Draw and return a rectangle.
5457 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {SVGAttributes} [attributes]
5458 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * General SVG attributes for the rectangle.
5459 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @return {Highcharts.SVGElement}
5460 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * The generated wrapper element.
5461 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> *
5462 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @sample highcharts/members/renderer-rect-on-chart/
5463 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Draw a rectangle in a chart
5464 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @sample highcharts/members/renderer-rect/
5465 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Draw a rectangle independent from a chart
5466 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
5467 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> rect: function(x, y, width, height, r, strokeWidth) {
5468  
5469 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> r = isObject(x) ? x.r : r;
5470  
5471 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> var wrapper = this.createElement('rect'),
5472 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> attribs = isObject(x) ? x : x === undefined ? {} : {
5473 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> x: x,
5474 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> y: y,
5475 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> width: Math.max(width, 0),
5476 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> height: Math.max(height, 0)
5477 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> };
5478  
5479  
5480 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (strokeWidth !== undefined) {
5481 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> attribs.strokeWidth = strokeWidth;
5482 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> attribs = wrapper.crisp(attribs);
5483 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5484 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> attribs.fill = 'none';
5485  
5486  
5487 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (r) {
5488 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> attribs.r = r;
5489 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5490  
5491 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> wrapper.rSetter = function(value, key, element) {
5492 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> attr(element, {
5493 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> rx: value,
5494 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> ry: value
5495 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> });
5496 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> };
5497  
5498 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> return wrapper.attr(attribs);
5499 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> },
5500  
5501 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /**
5502 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Resize the {@link SVGRenderer#box} and re-align all aligned child
5503 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * elements.
5504 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} width The new pixel width.
5505 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} height The new pixel height.
5506 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {boolean} animate Whether to animate.
5507 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
5508 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> setSize: function(width, height, animate) {
5509 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> var renderer = this,
5510 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> alignedObjects = renderer.alignedObjects,
5511 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> i = alignedObjects.length;
5512  
5513 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> renderer.width = width;
5514 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> renderer.height = height;
5515  
5516 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> renderer.boxWrapper.animate({
5517 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> width: width,
5518 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> height: height
5519 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }, {
5520 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> step: function() {
5521 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> this.attr({
5522 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> viewBox: '0 0 ' + this.attr('width') + ' ' + this.attr('height')
5523 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> });
5524 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> },
5525 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> duration: pick(animate, true) ? undefined : 0
5526 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> });
5527  
5528 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> while (i--) {
5529 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> alignedObjects[i].align();
5530 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5531 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> },
5532  
5533 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /**
5534 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Create and return an svg group element. Child {@link Highcharts.SVGElement}
5535 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * objects are added to the group by using the group as the first parameter
5536 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * in {@link Highcharts.SVGElement#add|add()}.
5537 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> *
5538 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {string} [name] The group will be given a class name of
5539 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * `highcharts-{name}`. This can be used for styling and scripting.
5540 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @returns {Highcharts.SVGElement} The generated wrapper element.
5541 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> *
5542 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @sample highcharts/members/renderer-g/
5543 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Show and hide grouped objects
5544 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
5545 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> g: function(name) {
5546 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> var elem = this.createElement('g');
5547 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> return name ? elem.attr({
5548 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> 'class': 'highcharts-' + name
5549 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }) : elem;
5550 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> },
5551  
5552 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /**
5553 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Display an image.
5554 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {string} src The image source.
5555 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [x] The X position.
5556 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [y] The Y position.
5557 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [width] The image width. If omitted, it defaults to the
5558 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * image file width.
5559 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [height] The image height. If omitted it defaults to the
5560 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * image file height.
5561 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @returns {Highcharts.SVGElement} The generated wrapper element.
5562 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> *
5563 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @sample highcharts/members/renderer-image-on-chart/
5564 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Add an image in a chart
5565 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @sample highcharts/members/renderer-image/
5566 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Add an image independent of a chart
5567 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
5568 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> image: function(src, x, y, width, height) {
5569 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> var attribs = {
5570 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> preserveAspectRatio: 'none'
5571 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> },
5572 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> elemWrapper;
5573  
5574 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // optional properties
5575 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (arguments.length > 1) {
5576 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> extend(attribs, {
5577 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> x: x,
5578 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> y: y,
5579 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> width: width,
5580 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> height: height
5581 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> });
5582 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5583  
5584 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> elemWrapper = this.createElement('image').attr(attribs);
5585  
5586 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // set the href in the xlink namespace
5587 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (elemWrapper.element.setAttributeNS) {
5588 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> elemWrapper.element.setAttributeNS('http://www.w3.org/1999/xlink',
5589 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> 'href', src);
5590 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> } else {
5591 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // could be exporting in IE
5592 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // using href throws "not supported" in ie7 and under, requries regex shim to fix later
5593 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> elemWrapper.element.setAttribute('hc-svg-href', src);
5594 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5595 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> return elemWrapper;
5596 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> },
5597  
5598 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /**
5599 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Draw a symbol out of pre-defined shape paths from {@SVGRenderer#symbols}.
5600 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * It is used in Highcharts for point makers, which cake a `symbol` option,
5601 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * and label and button backgrounds like in the tooltip and stock flags.
5602 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> *
5603 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {Symbol} symbol - The symbol name.
5604 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} x - The X coordinate for the top left position.
5605 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} y - The Y coordinate for the top left position.
5606 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} width - The pixel width.
5607 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} height - The pixel height.
5608 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {Object} [options] - Additional options, depending on the actual
5609 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * symbol drawn.
5610 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [options.anchorX] - The anchor X position for the
5611 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * `callout` symbol. This is where the chevron points to.
5612 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [options.anchorY] - The anchor Y position for the
5613 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * `callout` symbol. This is where the chevron points to.
5614 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [options.end] - The end angle of an `arc` symbol.
5615 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {boolean} [options.open] - Whether to draw `arc` symbol open or
5616 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * closed.
5617 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [options.r] - The radius of an `arc` symbol, or the
5618 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * border radius for the `callout` symbol.
5619 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * @param {number} [options.start] - The start angle of an `arc` symbol.
5620 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
5621 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> symbol: function(symbol, x, y, width, height, options) {
5622  
5623 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> var ren = this,
5624 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> obj,
5625 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> imageRegex = /^url\((.*?)\)$/,
5626 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> isImage = imageRegex.test(symbol),
5627 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> sym = !isImage && (this.symbols[symbol] ? symbol : 'circle'),
5628  
5629  
5630 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // get the symbol definition function
5631 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> symbolFn = sym && this.symbols[sym],
5632  
5633 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // check if there's a path defined for this symbol
5634 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> path = defined(x) && symbolFn && symbolFn.call(
5635 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> this.symbols,
5636 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> Math.round(x),
5637 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> Math.round(y),
5638 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> width,
5639 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> height,
5640 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> options
5641 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> ),
5642 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> imageSrc,
5643 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> centerImage;
5644  
5645 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (symbolFn) {
5646 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> obj = this.path(path);
5647  
5648  
5649 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> obj.attr('fill', 'none');
5650  
5651  
5652 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // expando properties for use in animate and attr
5653 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> extend(obj, {
5654 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> symbolName: sym,
5655 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> x: x,
5656 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> y: y,
5657 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> width: width,
5658 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> height: height
5659 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> });
5660 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (options) {
5661 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> extend(obj, options);
5662 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5663  
5664  
5665 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Image symbols
5666 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> } else if (isImage) {
5667  
5668  
5669 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> imageSrc = symbol.match(imageRegex)[1];
5670  
5671 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Create the image synchronously, add attribs async
5672 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> obj = this.image(imageSrc);
5673  
5674 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // The image width is not always the same as the symbol width. The
5675 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // image may be centered within the symbol, as is the case when
5676 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // image shapes are used as label backgrounds, for example in flags.
5677 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> obj.imgwidth = pick(
5678 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> symbolSizes[imageSrc] && symbolSizes[imageSrc].width,
5679 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> options && options.width
5680 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> );
5681 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> obj.imgheight = pick(
5682 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> symbolSizes[imageSrc] && symbolSizes[imageSrc].height,
5683 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> options && options.height
5684 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> );
5685 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /**
5686 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Set the size and position
5687 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
5688 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> centerImage = function() {
5689 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> obj.attr({
5690 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> width: obj.width,
5691 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> height: obj.height
5692 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> });
5693 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> };
5694  
5695 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> /**
5696 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * Width and height setters that take both the image's physical size
5697 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * and the label size into consideration, and translates the image
5698 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> * to center within the label.
5699 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> */
5700 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> each(['width', 'height'], function(key) {
5701 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> obj[key + 'Setter'] = function(value, key) {
5702 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> var attribs = {},
5703 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> imgSize = this['img' + key],
5704 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> trans = key === 'width' ? 'translateX' : 'translateY';
5705 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> this[key] = value;
5706 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (defined(imgSize)) {
5707 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (this.element) {
5708 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> this.element.setAttribute(key, imgSize);
5709 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5710 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (!this.alignByTranslate) {
5711 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> attribs[trans] = ((this[key] || 0) - imgSize) / 2;
5712 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> this.attr(attribs);
5713 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5714 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5715 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> };
5716 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> });
5717  
5718  
5719 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (defined(x)) {
5720 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> obj.attr({
5721 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> x: x,
5722 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> y: y
5723 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> });
5724 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> }
5725 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> obj.isImg = true;
5726  
5727 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> if (defined(obj.imgwidth) && defined(obj.imgheight)) {
5728 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> centerImage();
5729 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> } else {
5730 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Initialize image to be 0 size so export will still function if there's no cached sizes.
5731 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> obj.attr({
5732 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> width: 0,
5733 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> height: 0
5734 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> });
5735  
5736 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?> // Create a dummy JavaScript image to get the width and height. Due to a bug in IE < 8,
5737 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, // the created element must be assigned to a variable in order to load (#292).
5738 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, createElement('img', {
5739 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, onload: function() {
5740  
5741 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, var chart = charts[ren.chartIndex];
5742  
5743 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, // Special case for SVGs on IE11, the width is not accessible until the image is
5744 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, // part of the DOM (#2854).
5745 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, if (this.width === 0) {
5746 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, css(this, {
5747 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, position: 'absolute',
5748 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, top: '-999em'
5749 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, });
5750 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, doc.body.appendChild(this);
5751 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, }
5752  
5753 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, // Center the image
5754 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, symbolSizes[imageSrc] = { // Cache for next
5755 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, width: this.width,
5756 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, height: this.height
5757 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, };
5758 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, obj.imgwidth = this.width;
5759 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, obj.imgheight = this.height;
5760  
5761 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, if (obj.element) {
5762 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, centerImage();
5763 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, }
5764  
5765 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, // Clean up after #2854 workaround.
5766 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, if (this.parentNode) {
5767 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, this.parentNode.removeChild(this);
5768 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, }
5769  
5770 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, // Fire the load event when all external images are loaded
5771 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, ren.imgCount--;
5772 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, if (!ren.imgCount && chart && chart.onload) {
5773 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, chart.onload();
5774 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, }
5775 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, },
5776 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, src: imageSrc
5777 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, });
5778 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, this.imgCount++;
5779 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, }
5780 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, }
5781  
5782 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, return obj;
5783 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, },
5784  
5785 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, /**
5786 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, * @typedef {string} Symbol
5787 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, *
5788 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, * Can be one of `arc`, `callout`, `circle`, `diamond`, `square`,
5789 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, * `triangle`, `triangle-down`. Symbols are used internally for point
5790 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, * markers, button and label borders and backgrounds, or custom shapes.
5791 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, * Extendable by adding to {@link SVGRenderer#symbols}.
5792 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, */
5793 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, /**
5794 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, * An extendable collection of functions for defining symbol paths.
5795 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, */
5796 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, symbols: {
5797 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'circle': function(x, y, w, h) {
5798 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, // Return a full arc
5799 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, return this.arc(x + w / 2, y + h / 2, w / 2, h / 2, {
5800 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, start: 0,
5801 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, end: Math.PI * 2,
5802 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, open: false
5803 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, });
5804 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, },
5805  
5806 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'square': function(x, y, w, h) {
5807 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, return [
5808 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'M', x, y,
5809 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'L', x + w, y,
5810 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, x + w, y + h,
5811 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, x, y + h,
5812 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'Z'
5813 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, ];
5814 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, },
5815  
5816 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'triangle': function(x, y, w, h) {
5817 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, return [
5818 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'M', x + w / 2, y,
5819 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'L', x + w, y + h,
5820 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, x, y + h,
5821 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'Z'
5822 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, ];
5823 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, },
5824  
5825 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'triangle-down': function(x, y, w, h) {
5826 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, return [
5827 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'M', x, y,
5828 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'L', x + w, y,
5829 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, x + w / 2, y + h,
5830 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'Z'
5831 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, ];
5832 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, },
5833 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'diamond': function(x, y, w, h) {
5834 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, return [
5835 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'M', x + w / 2, y,
5836 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'L', x + w, y + h / 2,
5837 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, x + w / 2, y + h,
5838 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, x, y + h / 2,
5839 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'Z'
5840 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, ];
5841 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, },
5842 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, 'arc': function(x, y, w, h, options) {
5843 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, var start = options.start,
5844 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, rx = options.r || w,
5845 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, ry = options.r || h || w,
5846 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, end = options.end - 0.001, // to prevent cos and sin of start and end from becoming equal on 360 arcs (related: #1561)
5847 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, innerRadius = options.innerR,
5848 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, open = options.open,
5849 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, cosStart = Math.cos(start),
5850 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, sinStart = Math.sin(start),
5851 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, cosEnd = Math.cos(end),
5852 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, sinEnd = Math.sin(end),
5853 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8, longArc = options.end - start < Math.PI ? 0 : 1,
5854 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, arc;
5855  
5856 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, arc = [
5857 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, 'M',
5858 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, x + rx * cosStart,
5859 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, y + ry * sinStart,
5860 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, 'A', // arcTo
5861 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, rx, // x radius
5862 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, ry, // y radius
5863 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, 0, // slanting
5864 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, longArc, // long or short arc
5865 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, 1, // clockwise
5866 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, x + rx * cosEnd,
5867 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, y + ry * sinEnd
5868 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, ];
5869  
5870 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, if (defined(innerRadius)) {
5871 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, arc.push(
5872 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, open ? 'M' : 'L',
5873 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, x + innerRadius * cosEnd,
5874 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, y + innerRadius * sinEnd,
5875 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, 'A', // arcTo
5876 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, innerRadius, // x radius
5877 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, innerRadius, // y radius
5878 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, 0, // slanting
5879 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, longArc, // long or short arc
5880 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, 0, // clockwise
5881 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, x + innerRadius * cosStart,
5882 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, y + innerRadius * sinStart
5883 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, );
5884 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, }
5885  
5886 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, arc.push(open ? '' : 'Z'); // close
5887 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, return arc;
5888 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, },
5889  
5890 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, /**
5891 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, * Callout shape used for default tooltips, also used for rounded rectangles in VML
5892 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, */
5893 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, callout: function(x, y, w, h, options) {
5894 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, var arrowLength = 6,
5895 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, halfDistance = 6,
5896 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, r = Math.min((options && options.r) || 0, w, h),
5897 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, safeDistance = r + halfDistance,
5898 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, anchorX = options && options.anchorX,
5899 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, anchorY = options && options.anchorY,
5900 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, path;
5901  
5902 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, path = [
5903 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, 'M', x + r, y,
5904 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, 'L', x + w - r, y, // top side
5905 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, 'C', x + w, y, x + w, y, x + w, y + r, // top-right corner
5906 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, 'L', x + w, y + h - r, // right side
5907 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, 'C', x + w, y + h, x + w, y + h, x + w - r, y + h, // bottom-right corner
5908 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, 'L', x + r, y + h, // bottom side
5909 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, 'C', x, y + h, x, y + h, x, y + h - r, // bottom-left corner
5910 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, 'L', x, y + r, // left side
5911 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, 'C', x, y, x, y, x + r, y // top-left corner
5912 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, ];
5913  
5914 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, // Anchor on right side
5915 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, if (anchorX && anchorX > w) {
5916  
5917 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, // Chevron
5918 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1, if (anchorY > y + safeDistance && anchorY < y + h - safeDistance) {
5919 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { path.splice(13, 3,
5920 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { 'L', x + w, anchorY - halfDistance,
5921 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { x + w + arrowLength, anchorY,
5922 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { x + w, anchorY + halfDistance,
5923 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { x + w, y + h - r
5924 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { );
5925  
5926 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { // Simple connector
5927 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { } else {
5928 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { path.splice(13, 3,
5929 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { 'L', x + w, h / 2,
5930 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { anchorX, anchorY,
5931 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { x + w, h / 2,
5932 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { x + w, y + h - r
5933 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { );
5934 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { }
5935  
5936 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { // Anchor on left side
5937 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) { } else if (anchorX && anchorX < 0) {
5938  
5939 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) { // Chevron
5940 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) { if (anchorY > y + safeDistance && anchorY < y + h - safeDistance) {
5941 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) { path.splice(33, 3,
5942 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) { 'L', x, anchorY + halfDistance,
5943 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) { x - arrowLength, anchorY,
5944 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) { x, anchorY - halfDistance,
5945 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) { x, y + r
5946 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) { );
5947  
5948 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) { // Simple connector
5949 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) { } else {
5950 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) { path.splice(33, 3,
5951 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) { 'L', x, h / 2,
5952 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) { anchorX, anchorY,
5953 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) { x, h / 2,
5954 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) { x, y + r
5955 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) { );
5956 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) { }
5957  
5958 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) { } else if (anchorY && anchorY > h && anchorX > x + safeDistance && anchorX < x + w - safeDistance) { // replace bottom
5959 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { / path.splice(23, 3,
5960 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { / 'L', anchorX + halfDistance, y + h,
5961 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { / anchorX, y + h + arrowLength,
5962 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { / anchorX - halfDistance, y + h,
5963 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { / x + r, y + h
5964 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { / );
5965 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { / } else if (anchorY && anchorY < 0 && anchorX > x + safeDistance && anchorX < x + w - safeDistance) { // replace top
5966 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / path.splice(3, 3,
5967 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / 'L', anchorX - halfDistance, y,
5968 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / anchorX, y - arrowLength,
5969 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / anchorX + halfDistance, y,
5970 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / w - r, y
5971 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / );
5972 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
5973  
5974 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / return path;
5975 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
5976 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / },
5977  
5978 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
5979 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @typedef {Highcharts.SVGElement} ClipRect - A clipping rectangle that can be applied
5980 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * to one or more {@link SVGElement} instances. It is instanciated with the
5981 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * {@link SVGRenderer#clipRect} function and applied with the {@link
5982 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * SVGElement#clip} function.
5983 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / *
5984 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @example
5985 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * var circle = renderer.circle(100, 100, 100)
5986 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * .attr({ fill: 'red' })
5987 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * .add();
5988 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * var clipRect = renderer.clipRect(100, 100, 100, 100);
5989 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / *
5990 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * // Leave only the lower right quarter visible
5991 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * circle.clip(clipRect);
5992 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
5993 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
5994 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * Define a clipping rectangle
5995 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @param {String} id
5996 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @param {number} x
5997 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @param {number} y
5998 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @param {number} width
5999 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @param {number} height
6000 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @returns {ClipRect} A clipping rectangle.
6001 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
6002 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / clipRect: function(x, y, width, height) {
6003 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / var wrapper,
6004 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / id = H.uniqueKey(),
6005  
6006 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / clipPath = this.createElement('clipPath').attr({
6007 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / id: id
6008 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }).add(this.defs);
6009  
6010 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper = this.rect(x, y, width, height, 0).add(clipPath);
6011 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.id = id;
6012 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.clipPath = clipPath;
6013 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.count = 0;
6014  
6015 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / return wrapper;
6016 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / },
6017  
6018  
6019  
6020  
6021  
6022 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
6023 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * Draw text. The text can contain a subset of HTML, like spans and anchors
6024 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * and some basic text styling of these. For more advanced features like
6025 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * border and background, use {@link Highcharts.SVGRenderer#label} instead.
6026 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * To update the text after render, run `text.attr({ text: 'New text' })`.
6027 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @param {String} str
6028 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * The text of (subset) HTML to draw.
6029 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @param {number} x
6030 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * The x position of the text's lower left corner.
6031 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @param {number} y
6032 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * The y position of the text's lower left corner.
6033 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @param {Boolean} [useHTML=false]
6034 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * Use HTML to render the text.
6035 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / *
6036 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @return {Highcharts.SVGElement} The text object.
6037 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / *
6038 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @sample highcharts/members/renderer-text-on-chart/
6039 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * Annotate the chart freely
6040 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @sample highcharts/members/renderer-on-chart/
6041 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * Annotate with a border and in response to the data
6042 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @sample highcharts/members/renderer-text/
6043 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * Formatted text
6044 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
6045 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / text: function(str, x, y, useHTML) {
6046  
6047 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // declare variables
6048 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / var renderer = this,
6049 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / fakeSVG = !svg && renderer.forExport,
6050 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper,
6051 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / attribs = {};
6052  
6053 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (useHTML && (renderer.allowHTML || !renderer.forExport)) {
6054 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / return renderer.html(str, x, y);
6055 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6056  
6057 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / attribs.x = Math.round(x || 0); // X is always needed for line-wrap logic
6058 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (y) {
6059 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / attribs.y = Math.round(y);
6060 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6061 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (str || str === 0) {
6062 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / attribs.text = str;
6063 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6064  
6065 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper = renderer.createElement('text')
6066 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / .attr(attribs);
6067  
6068 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Prevent wrapping from creating false offsetWidths in export in legacy IE (#1079, #1063)
6069 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (fakeSVG) {
6070 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.css({
6071 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / position: 'absolute'
6072 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / });
6073 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6074  
6075 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (!useHTML) {
6076 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.xSetter = function(value, key, element) {
6077 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / var tspans = element.getElementsByTagName('tspan'),
6078 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / tspan,
6079 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / parentVal = element.getAttribute(key),
6080 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / i;
6081 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / for (i = 0; i < tspans.length; i++) {
6082 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / tspan = tspans[i];
6083 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // If the x values are equal, the tspan represents a linebreak
6084 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (tspan.getAttribute(key) === parentVal) {
6085 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / tspan.setAttribute(key, value);
6086 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6087 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6088 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / element.setAttribute(key, value);
6089 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / };
6090 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6091  
6092 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / return wrapper;
6093 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / },
6094  
6095 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
6096 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * Utility to return the baseline offset and total line height from the font
6097 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * size.
6098 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / *
6099 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @param {?string} fontSize The current font size to inspect. If not given,
6100 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * the font size will be found from the DOM element.
6101 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @param {SVGElement|SVGDOMElement} [elem] The element to inspect for a
6102 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * current font size.
6103 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @returns {Object} An object containing `h`: the line height, `b`: the
6104 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * baseline relative to the top of the box, and `f`: the font size.
6105 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
6106 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / fontMetrics: function(fontSize, elem) {
6107 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / var lineHeight,
6108 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / baseline;
6109  
6110  
6111 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / fontSize = fontSize ||
6112 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // When the elem is a DOM element (#5932)
6113 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / (elem && elem.style && elem.style.fontSize) ||
6114 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Fall back on the renderer style default
6115 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / (this.style && this.style.fontSize);
6116  
6117  
6118  
6119 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Handle different units
6120 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (/px/.test(fontSize)) {
6121 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / fontSize = pInt(fontSize);
6122 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / } else if (/em/.test(fontSize)) {
6123 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // The em unit depends on parent items
6124 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / fontSize = parseFloat(fontSize) *
6125 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / (elem ? this.fontMetrics(null, elem.parentNode).f : 16);
6126 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / } else {
6127 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / fontSize = 12;
6128 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6129  
6130 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Empirical values found by comparing font size and bounding box
6131 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // height. Applies to the default font family.
6132 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // http://jsfiddle.net/highcharts/7xvn7/
6133 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / lineHeight = fontSize < 24 ? fontSize + 3 : Math.round(fontSize * 1.2);
6134 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / baseline = Math.round(lineHeight * 0.8);
6135  
6136 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / return {
6137 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / h: lineHeight,
6138 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / b: baseline,
6139 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / f: fontSize
6140 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / };
6141 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / },
6142  
6143 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
6144 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * Correct X and Y positioning of a label for rotation (#1764)
6145 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
6146 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / rotCorr: function(baseline, rotation, alterY) {
6147 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / var y = baseline;
6148 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (rotation && alterY) {
6149 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / y = Math.max(y * Math.cos(rotation * deg2rad), 4);
6150 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6151 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / return {
6152 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / x: (-baseline / 3) * Math.sin(rotation * deg2rad),
6153 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / y: y
6154 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / };
6155 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / },
6156  
6157 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
6158 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * Draw a label, which is an extended text element with support for border
6159 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * and background. Highcharts creates a `g` element with a text and a `path`
6160 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * or `rect` inside, to make it behave somewhat like a HTML div. Border and
6161 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * background are set through `stroke`, `stroke-width` and `fill` attributes
6162 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * using the {@link Highcharts.SVGElement#attr|attr} method. To update the
6163 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * text after render, run `label.attr({ text: 'New text' })`.
6164 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / *
6165 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @param {string} str
6166 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * The initial text string or (subset) HTML to render.
6167 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @param {number} x
6168 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * The x position of the label's left side.
6169 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @param {number} y
6170 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * The y position of the label's top side or baseline, depending on
6171 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * the `baseline` parameter.
6172 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @param {String} shape
6173 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * The shape of the label's border/background, if any. Defaults to
6174 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * `rect`. Other possible values are `callout` or other shapes
6175 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * defined in {@link Highcharts.SVGRenderer#symbols}.
6176 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @param {number} anchorX
6177 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * In case the `shape` has a pointer, like a flag, this is the
6178 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * coordinates it should be pinned to.
6179 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @param {number} anchorY
6180 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * In case the `shape` has a pointer, like a flag, this is the
6181 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * coordinates it should be pinned to.
6182 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @param {Boolean} baseline
6183 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * Whether to position the label relative to the text baseline,
6184 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * like {@link Highcharts.SVGRenderer#text|renderer.text}, or to the
6185 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * upper border of the rectangle.
6186 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @param {String} className
6187 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * Class name for the group.
6188 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / *
6189 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @return {Highcharts.SVGElement}
6190 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * The generated label.
6191 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / *
6192 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @sample highcharts/members/renderer-label-on-chart/
6193 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * A label on the chart
6194 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
6195 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / label: function(str, x, y, shape, anchorX, anchorY, useHTML, baseline, className) {
6196  
6197 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / var renderer = this,
6198 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper = renderer.g(className !== 'button' && 'label'),
6199 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / text = wrapper.text = renderer.text('', 0, 0, useHTML)
6200 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / .attr({
6201 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / zIndex: 1
6202 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }),
6203 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / box,
6204 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / bBox,
6205 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / alignFactor = 0,
6206 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / padding = 3,
6207 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / paddingLeft = 0,
6208 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / width,
6209 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / height,
6210 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapperX,
6211 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapperY,
6212 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / textAlign,
6213 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / deferredAttr = {},
6214 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / strokeWidth,
6215 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / baselineOffset,
6216 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / hasBGImage = /^url\((.*?)\)$/.test(shape),
6217 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / needsBox = hasBGImage,
6218 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / getCrispAdjust,
6219 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / updateBoxSize,
6220 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / updateTextPadding,
6221 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / boxAttr;
6222  
6223 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (className) {
6224 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.addClass('highcharts-' + className);
6225 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6226  
6227  
6228 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / needsBox = hasBGImage;
6229 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / getCrispAdjust = function() {
6230 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / return (strokeWidth || 0) % 2 / 2;
6231 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / };
6232  
6233  
6234  
6235 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
6236 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * This function runs after the label is added to the DOM (when the bounding box is
6237 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * available), and after the text of the label is updated to detect the new bounding
6238 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * box and reflect it in the border box.
6239 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
6240 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / updateBoxSize = function() {
6241 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / var style = text.element.style,
6242 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / crispAdjust,
6243 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / attribs = {};
6244  
6245 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / bBox = (width === undefined || height === undefined || textAlign) && defined(text.textStr) &&
6246 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / text.getBBox(); //#3295 && 3514 box failure when string equals 0
6247 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.width = (width || bBox.width || 0) + 2 * padding + paddingLeft;
6248 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.height = (height || bBox.height || 0) + 2 * padding;
6249  
6250 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Update the label-scoped y offset
6251 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / baselineOffset = padding + renderer.fontMetrics(style && style.fontSize, text).b;
6252  
6253  
6254 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (needsBox) {
6255  
6256 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Create the border box if it is not already present
6257 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (!box) {
6258 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.box = box = renderer.symbols[shape] || hasBGImage ? // Symbol definition exists (#5324)
6259 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / renderer.symbol(shape) :
6260 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / renderer.rect();
6261  
6262 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / box.addClass(
6263 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / (className === 'button' ? '' : 'highcharts-label-box') + // Don't use label className for buttons
6264 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / (className ? ' highcharts-' + className + '-box' : '')
6265 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / );
6266  
6267 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / box.add(wrapper);
6268  
6269 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / crispAdjust = getCrispAdjust();
6270 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / attribs.x = crispAdjust;
6271 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / attribs.y = (baseline ? -baselineOffset : 0) + crispAdjust;
6272 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6273  
6274 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Apply the box attributes
6275 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / attribs.width = Math.round(wrapper.width);
6276 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / attribs.height = Math.round(wrapper.height);
6277  
6278 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / box.attr(extend(attribs, deferredAttr));
6279 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / deferredAttr = {};
6280 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6281 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / };
6282  
6283 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
6284 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * This function runs after setting text or padding, but only if padding is changed
6285 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
6286 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / updateTextPadding = function() {
6287 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / var textX = paddingLeft + padding,
6288 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / textY;
6289  
6290 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // determin y based on the baseline
6291 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / textY = baseline ? 0 : baselineOffset;
6292  
6293 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // compensate for alignment
6294 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (defined(width) && bBox && (textAlign === 'center' || textAlign === 'right')) {
6295 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / textX += {
6296 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / center: 0.5,
6297 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / right: 1
6298 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }[textAlign] * (width - bBox.width);
6299 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6300  
6301 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // update if anything changed
6302 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (textX !== text.x || textY !== text.y) {
6303 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / text.attr('x', textX);
6304 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (textY !== undefined) {
6305 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / text.attr('y', textY);
6306 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6307 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6308  
6309 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // record current values
6310 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / text.x = textX;
6311 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / text.y = textY;
6312 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / };
6313  
6314 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
6315 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * Set a box attribute, or defer it if the box is not yet created
6316 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @param {Object} key
6317 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @param {Object} value
6318 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
6319 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / boxAttr = function(key, value) {
6320 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (box) {
6321 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / box.attr(key, value);
6322 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / } else {
6323 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / deferredAttr[key] = value;
6324 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6325 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / };
6326  
6327 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
6328 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * After the text element is added, get the desired size of the border box
6329 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * and add it before the text in the DOM.
6330 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
6331 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.onAdd = function() {
6332 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / text.add(wrapper);
6333 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.attr({
6334 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / text: (str || str === 0) ? str : '', // alignment is available now // #3295: 0 not rendered if given as a value
6335 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / x: x,
6336 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / y: y
6337 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / });
6338  
6339 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (box && defined(anchorX)) {
6340 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.attr({
6341 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / anchorX: anchorX,
6342 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / anchorY: anchorY
6343 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / });
6344 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6345 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / };
6346  
6347 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /*
6348 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * Add specific attribute setters.
6349 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
6350  
6351 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // only change local variables
6352 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.widthSetter = function(value) {
6353 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / width = H.isNumber(value) ? value : null; // width:auto => null
6354 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / };
6355 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.heightSetter = function(value) {
6356 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / height = value;
6357 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / };
6358 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper['text-alignSetter'] = function(value) {
6359 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / textAlign = value;
6360 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / };
6361 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.paddingSetter = function(value) {
6362 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (defined(value) && value !== padding) {
6363 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / padding = wrapper.padding = value;
6364 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / updateTextPadding();
6365 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6366 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / };
6367 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.paddingLeftSetter = function(value) {
6368 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (defined(value) && value !== paddingLeft) {
6369 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / paddingLeft = value;
6370 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / updateTextPadding();
6371 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6372 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / };
6373  
6374  
6375 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // change local variable and prevent setting attribute on the group
6376 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.alignSetter = function(value) {
6377 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / value = {
6378 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / left: 0,
6379 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / center: 0.5,
6380 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / right: 1
6381 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }[value];
6382 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (value !== alignFactor) {
6383 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / alignFactor = value;
6384 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (bBox) { // Bounding box exists, means we're dynamically changing
6385 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.attr({
6386 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / x: wrapperX
6387 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }); // #5134
6388 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6389 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6390 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / };
6391  
6392 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // apply these to the box and the text alike
6393 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.textSetter = function(value) {
6394 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (value !== undefined) {
6395 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / text.textSetter(value);
6396 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6397 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / updateBoxSize();
6398 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / updateTextPadding();
6399 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / };
6400  
6401 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // apply these to the box but not to the text
6402 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper['stroke-widthSetter'] = function(value, key) {
6403 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (value) {
6404 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / needsBox = true;
6405 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6406 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / strokeWidth = this['stroke-width'] = value;
6407 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / boxAttr(key, value);
6408 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / };
6409  
6410 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.strokeSetter = wrapper.fillSetter = wrapper.rSetter = function(value, key) {
6411 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (key === 'fill' && value) {
6412 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / needsBox = true;
6413 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6414 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / boxAttr(key, value);
6415 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / };
6416  
6417 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.anchorXSetter = function(value, key) {
6418 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / anchorX = wrapper.anchorX = value;
6419 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / boxAttr(key, Math.round(value) - getCrispAdjust() - wrapperX);
6420 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / };
6421 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.anchorYSetter = function(value, key) {
6422 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / anchorY = wrapper.anchorY = value;
6423 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / boxAttr(key, value - wrapperY);
6424 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / };
6425  
6426 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // rename attributes
6427 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.xSetter = function(value) {
6428 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.x = value; // for animation getter
6429 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (alignFactor) {
6430 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / value -= alignFactor * ((width || bBox.width) + 2 * padding);
6431 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6432 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapperX = Math.round(value);
6433 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.attr('translateX', wrapperX);
6434 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / };
6435 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.ySetter = function(value) {
6436 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapperY = wrapper.y = Math.round(value);
6437 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.attr('translateY', wrapperY);
6438 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / };
6439  
6440 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Redirect certain methods to either the box or the text
6441 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / var baseCss = wrapper.css;
6442 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / return extend(wrapper, {
6443 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
6444 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * Pick up some properties and apply them to the text instead of the
6445 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * wrapper.
6446 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @ignore
6447 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
6448 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / css: function(styles) {
6449 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (styles) {
6450 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / var textStyles = {};
6451 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / styles = merge(styles); // create a copy to avoid altering the original object (#537)
6452 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / each(wrapper.textProps, function(prop) {
6453 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (styles[prop] !== undefined) {
6454 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / textStyles[prop] = styles[prop];
6455 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / delete styles[prop];
6456 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6457 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / });
6458 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / text.css(textStyles);
6459 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6460 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / return baseCss.call(wrapper, styles);
6461 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / },
6462 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
6463 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * Return the bounding box of the box, not the group.
6464 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @ignore
6465 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
6466 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / getBBox: function() {
6467 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / return {
6468 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / width: bBox.width + 2 * padding,
6469 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / height: bBox.height + 2 * padding,
6470 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / x: bBox.x - padding,
6471 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / y: bBox.y - padding
6472 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / };
6473 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / },
6474  
6475 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
6476 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * Apply the shadow to the box.
6477 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @ignore
6478 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
6479 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / shadow: function(b) {
6480 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (b) {
6481 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / updateBoxSize();
6482 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (box) {
6483 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / box.shadow(b);
6484 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6485 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6486 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / return wrapper;
6487 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / },
6488  
6489 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
6490 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * Destroy and release memory.
6491 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @ignore
6492 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
6493 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / destroy: function() {
6494  
6495 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Added by button implementation
6496 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / removeEvent(wrapper.element, 'mouseenter');
6497 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / removeEvent(wrapper.element, 'mouseleave');
6498  
6499 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (text) {
6500 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / text = text.destroy();
6501 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6502 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (box) {
6503 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / box = box.destroy();
6504 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6505 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Call base implementation to destroy the rest
6506 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / SVGElement.prototype.destroy.call(wrapper);
6507  
6508 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Release local pointers (#1298)
6509 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper = renderer = updateBoxSize = updateTextPadding = boxAttr = null;
6510 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6511 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / });
6512 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6513 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }); // end SVGRenderer
6514  
6515  
6516 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // general renderer
6517 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / H.Renderer = SVGRenderer;
6518  
6519 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }(Highcharts));
6520 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / (function(H) {
6521 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
6522 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * (c) 2010-2017 Torstein Honsi
6523 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / *
6524 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * License: www.highcharts.com/license
6525 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
6526 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / var attr = H.attr,
6527 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / createElement = H.createElement,
6528 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / css = H.css,
6529 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / defined = H.defined,
6530 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / each = H.each,
6531 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / extend = H.extend,
6532 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / isFirefox = H.isFirefox,
6533 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / isMS = H.isMS,
6534 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / isWebKit = H.isWebKit,
6535 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / pInt = H.pInt,
6536 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / SVGElement = H.SVGElement,
6537 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / SVGRenderer = H.SVGRenderer,
6538 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / win = H.win,
6539 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrap = H.wrap;
6540  
6541 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Extend SvgElement for useHTML option
6542 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / extend(SVGElement.prototype, /** @lends SVGElement.prototype */ {
6543 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
6544 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * Apply CSS to HTML elements. This is used in text within SVG rendering and
6545 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * by the VML renderer
6546 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
6547 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / htmlCss: function(styles) {
6548 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / var wrapper = this,
6549 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / element = wrapper.element,
6550 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / textWidth = styles && element.tagName === 'SPAN' && styles.width;
6551  
6552 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (textWidth) {
6553 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / delete styles.width;
6554 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.textWidth = textWidth;
6555 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.updateTransform();
6556 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6557 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (styles && styles.textOverflow === 'ellipsis') {
6558 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / styles.whiteSpace = 'nowrap';
6559 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / styles.overflow = 'hidden';
6560 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6561 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.styles = extend(wrapper.styles, styles);
6562 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / css(wrapper.element, styles);
6563  
6564 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / return wrapper;
6565 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / },
6566  
6567 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
6568 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * VML and useHTML method for calculating the bounding box based on offsets
6569 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @param {Boolean} refresh Whether to force a fresh value from the DOM or to
6570 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * use the cached value
6571 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / *
6572 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @return {Object} A hash containing values for x, y, width and height
6573 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
6574  
6575 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / htmlGetBBox: function() {
6576 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / var wrapper = this,
6577 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / element = wrapper.element;
6578  
6579 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // faking getBBox in exported SVG in legacy IE
6580 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // faking getBBox in exported SVG in legacy IE (is this a duplicate of the fix for #1079?)
6581 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (element.nodeName === 'text') {
6582 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / element.style.position = 'absolute';
6583 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6584  
6585 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / return {
6586 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / x: element.offsetLeft,
6587 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / y: element.offsetTop,
6588 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / width: element.offsetWidth,
6589 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / height: element.offsetHeight
6590 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / };
6591 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / },
6592  
6593 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
6594 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * VML override private method to update elements based on internal
6595 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * properties based on SVG transform
6596 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
6597 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / htmlUpdateTransform: function() {
6598 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // aligning non added elements is expensive
6599 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (!this.added) {
6600 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / this.alignOnAdd = true;
6601 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / return;
6602 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6603  
6604 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / var wrapper = this,
6605 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / renderer = wrapper.renderer,
6606 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / elem = wrapper.element,
6607 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / translateX = wrapper.translateX || 0,
6608 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / translateY = wrapper.translateY || 0,
6609 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / x = wrapper.x || 0,
6610 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / y = wrapper.y || 0,
6611 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / align = wrapper.textAlign || 'left',
6612 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / alignCorrection = {
6613 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / left: 0,
6614 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / center: 0.5,
6615 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / right: 1
6616 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }[align],
6617 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / styles = wrapper.styles;
6618  
6619 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // apply translate
6620 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / css(elem, {
6621 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / marginLeft: translateX,
6622 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / marginTop: translateY
6623 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / });
6624  
6625  
6626 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (wrapper.shadows) { // used in labels/tooltip
6627 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / each(wrapper.shadows, function(shadow) {
6628 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / css(shadow, {
6629 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / marginLeft: translateX + 1,
6630 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / marginTop: translateY + 1
6631 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / });
6632 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / });
6633 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6634  
6635  
6636 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // apply inversion
6637 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (wrapper.inverted) { // wrapper is a group
6638 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / each(elem.childNodes, function(child) {
6639 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / renderer.invertChild(child, elem);
6640 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / });
6641 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6642  
6643 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (elem.tagName === 'SPAN') {
6644  
6645 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / var rotation = wrapper.rotation,
6646 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / baseline,
6647 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / textWidth = pInt(wrapper.textWidth),
6648 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / whiteSpace = styles && styles.whiteSpace,
6649 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / currentTextTransform = [rotation, align, elem.innerHTML, wrapper.textWidth, wrapper.textAlign].join(',');
6650  
6651 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (currentTextTransform !== wrapper.cTT) { // do the calculations and DOM access only if properties changed
6652  
6653  
6654 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / baseline = renderer.fontMetrics(elem.style.fontSize).b;
6655  
6656 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Renderer specific handling of span rotation
6657 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (defined(rotation)) {
6658 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.setSpanRotation(rotation, alignCorrection, baseline);
6659 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6660  
6661 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Reset multiline/ellipsis in order to read width (#4928, #5417)
6662 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / css(elem, {
6663 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / width: '',
6664 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / whiteSpace: whiteSpace || 'nowrap'
6665 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / });
6666  
6667 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Update textWidth
6668 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (elem.offsetWidth > textWidth && /[ \-]/.test(elem.textContent || elem.innerText)) { // #983, #1254
6669 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / css(elem, {
6670 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / width: textWidth + 'px',
6671 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / display: 'block',
6672 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / whiteSpace: whiteSpace || 'normal' // #3331
6673 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / });
6674 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6675  
6676  
6677 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.getSpanCorrection(elem.offsetWidth, baseline, alignCorrection, rotation, align);
6678 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6679  
6680 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // apply position with correction
6681 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / css(elem, {
6682 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / left: (x + (wrapper.xCorr || 0)) + 'px',
6683 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / top: (y + (wrapper.yCorr || 0)) + 'px'
6684 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / });
6685  
6686 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // force reflow in webkit to apply the left and top on useHTML element (#1249)
6687 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (isWebKit) {
6688 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / baseline = elem.offsetHeight; // assigned to baseline for lint purpose
6689 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6690  
6691 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // record current text transform
6692 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.cTT = currentTextTransform;
6693 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6694 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / },
6695  
6696 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
6697 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * Set the rotation of an individual HTML span
6698 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
6699 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / setSpanRotation: function(rotation, alignCorrection, baseline) {
6700 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / var rotationStyle = {},
6701 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / cssTransformKey = isMS ? '-ms-transform' : isWebKit ? '-webkit-transform' : isFirefox ? 'MozTransform' : win.opera ? '-o-transform' : '';
6702  
6703 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / rotationStyle[cssTransformKey] = rotationStyle.transform = 'rotate(' + rotation + 'deg)';
6704 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / rotationStyle[cssTransformKey + (isFirefox ? 'Origin' : '-origin')] = rotationStyle.transformOrigin = (alignCorrection * 100) + '% ' + baseline + 'px';
6705 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / css(this.element, rotationStyle);
6706 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / },
6707  
6708 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
6709 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * Get the correction in X and Y positioning as the element is rotated.
6710 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
6711 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / getSpanCorrection: function(width, baseline, alignCorrection) {
6712 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / this.xCorr = -width * alignCorrection;
6713 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / this.yCorr = -baseline;
6714 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6715 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / });
6716  
6717 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Extend SvgRenderer for useHTML option.
6718 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / extend(SVGRenderer.prototype, /** @lends SVGRenderer.prototype */ {
6719 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
6720 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * Create HTML text node. This is used by the VML renderer as well as the SVG
6721 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * renderer through the useHTML option.
6722 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / *
6723 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @param {String} str
6724 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @param {Number} x
6725 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @param {Number} y
6726 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
6727 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / html: function(str, x, y) {
6728 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / var wrapper = this.createElement('span'),
6729 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / element = wrapper.element,
6730 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / renderer = wrapper.renderer,
6731 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / isSVG = renderer.isSVG,
6732 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / addSetters = function(element, style) {
6733 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // These properties are set as attributes on the SVG group, and as
6734 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // identical CSS properties on the div. (#3542)
6735 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / each(['opacity', 'visibility'], function(prop) {
6736 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrap(element, prop + 'Setter', function(proceed, value, key, elem) {
6737 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / proceed.call(this, value, key, elem);
6738 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / style[key] = value;
6739 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / });
6740 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / });
6741 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / };
6742  
6743 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Text setter
6744 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.textSetter = function(value) {
6745 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (value !== element.innerHTML) {
6746 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / delete this.bBox;
6747 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6748 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / element.innerHTML = this.textStr = value;
6749 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.htmlUpdateTransform();
6750 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / };
6751  
6752 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Add setters for the element itself (#4938)
6753 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (isSVG) { // #4938, only for HTML within SVG
6754 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / addSetters(wrapper, wrapper.element.style);
6755 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6756  
6757 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Various setters which rely on update transform
6758 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.xSetter = wrapper.ySetter = wrapper.alignSetter = wrapper.rotationSetter = function(value, key) {
6759 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (key === 'align') {
6760 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / key = 'textAlign'; // Do not overwrite the SVGElement.align method. Same as VML.
6761 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6762 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper[key] = value;
6763 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.htmlUpdateTransform();
6764 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / };
6765  
6766 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Set the default attributes
6767 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper
6768 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / .attr({
6769 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / text: str,
6770 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / x: Math.round(x),
6771 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / y: Math.round(y)
6772 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / })
6773 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / .css({
6774  
6775 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / fontFamily: this.style.fontFamily,
6776 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / fontSize: this.style.fontSize,
6777  
6778 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / position: 'absolute'
6779 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / });
6780  
6781 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Keep the whiteSpace style outside the wrapper.styles collection
6782 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / element.style.whiteSpace = 'nowrap';
6783  
6784 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Use the HTML specific .css method
6785 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.css = wrapper.htmlCss;
6786  
6787 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // This is specific for HTML within SVG
6788 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (isSVG) {
6789 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.add = function(svgGroupWrapper) {
6790  
6791 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / var htmlGroup,
6792 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / container = renderer.box.parentNode,
6793 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / parentGroup,
6794 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / parents = [];
6795  
6796 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / this.parentGroup = svgGroupWrapper;
6797  
6798 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Create a mock group to hold the HTML elements
6799 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (svgGroupWrapper) {
6800 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / htmlGroup = svgGroupWrapper.div;
6801 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (!htmlGroup) {
6802  
6803 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Read the parent chain into an array and read from top down
6804 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / parentGroup = svgGroupWrapper;
6805 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / while (parentGroup) {
6806  
6807 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / parents.push(parentGroup);
6808  
6809 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Move up to the next parent group
6810 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / parentGroup = parentGroup.parentGroup;
6811 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6812  
6813 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Ensure dynamically updating position when any parent is translated
6814 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / each(parents.reverse(), function(parentGroup) {
6815 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / var htmlGroupStyle,
6816 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / cls = attr(parentGroup.element, 'class');
6817  
6818 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (cls) {
6819 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / cls = {
6820 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / className: cls
6821 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / };
6822 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / } // else null
6823  
6824 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Create a HTML div and append it to the parent div to emulate
6825 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // the SVG group structure
6826 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / htmlGroup = parentGroup.div = parentGroup.div || createElement('div', cls, {
6827 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / position: 'absolute',
6828 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / left: (parentGroup.translateX || 0) + 'px',
6829 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / top: (parentGroup.translateY || 0) + 'px',
6830 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / display: parentGroup.display,
6831 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / opacity: parentGroup.opacity, // #5075
6832 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / pointerEvents: parentGroup.styles && parentGroup.styles.pointerEvents // #5595
6833 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }, htmlGroup || container); // the top group is appended to container
6834  
6835 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Shortcut
6836 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / htmlGroupStyle = htmlGroup.style;
6837  
6838 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Set listeners to update the HTML div's position whenever the SVG group
6839 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // position is changed
6840 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / extend(parentGroup, {
6841 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / on: function() {
6842 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.on.apply({
6843 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / element: parents[0].div
6844 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }, arguments);
6845 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / return parentGroup;
6846 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / },
6847 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / translateXSetter: function(value, key) {
6848 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / htmlGroupStyle.left = value + 'px';
6849 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / parentGroup[key] = value;
6850 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / parentGroup.doTransform = true;
6851 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / },
6852 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / translateYSetter: function(value, key) {
6853 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / htmlGroupStyle.top = value + 'px';
6854 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / parentGroup[key] = value;
6855 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / parentGroup.doTransform = true;
6856 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6857 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / });
6858 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / addSetters(parentGroup, htmlGroupStyle);
6859 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / });
6860  
6861 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6862 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / } else {
6863 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / htmlGroup = container;
6864 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6865  
6866 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / htmlGroup.appendChild(element);
6867  
6868 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Shared with VML:
6869 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.added = true;
6870 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (wrapper.alignOnAdd) {
6871 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.htmlUpdateTransform();
6872 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6873  
6874 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / return wrapper;
6875 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / };
6876 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6877 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / return wrapper;
6878 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6879 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / });
6880  
6881 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }(Highcharts));
6882 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / (function(H) {
6883 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
6884 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * (c) 2010-2017 Torstein Honsi
6885 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / *
6886 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * License: www.highcharts.com/license
6887 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
6888  
6889 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / var VMLRenderer,
6890 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / VMLRendererExtension,
6891 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / VMLElement,
6892  
6893 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / createElement = H.createElement,
6894 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / css = H.css,
6895 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / defined = H.defined,
6896 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / deg2rad = H.deg2rad,
6897 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / discardElement = H.discardElement,
6898 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / doc = H.doc,
6899 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / each = H.each,
6900 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / erase = H.erase,
6901 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / extend = H.extend,
6902 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / extendClass = H.extendClass,
6903 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / isArray = H.isArray,
6904 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / isNumber = H.isNumber,
6905 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / isObject = H.isObject,
6906 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / merge = H.merge,
6907 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / noop = H.noop,
6908 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / pick = H.pick,
6909 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / pInt = H.pInt,
6910 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / svg = H.svg,
6911 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / SVGElement = H.SVGElement,
6912 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / SVGRenderer = H.SVGRenderer,
6913 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / win = H.win;
6914  
6915 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /* ****************************************************************************
6916 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * *
6917 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * START OF INTERNET EXPLORER <= 8 SPECIFIC CODE *
6918 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * *
6919 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * For applications and websites that don't need IE support, like platform *
6920 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * targeted mobile apps and web apps, this code can be removed. *
6921 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * *
6922 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / *****************************************************************************/
6923  
6924 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
6925 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @constructor
6926 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
6927 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (!svg) {
6928  
6929 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
6930 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * The VML element wrapper.
6931 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
6932 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / VMLElement = {
6933  
6934 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / docMode8: doc && doc.documentMode === 8,
6935  
6936 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
6937 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * Initialize a new VML element wrapper. It builds the markup as a string
6938 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * to minimize DOM traffic.
6939 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @param {Object} renderer
6940 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @param {Object} nodeName
6941 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
6942 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / init: function(renderer, nodeName) {
6943 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / var wrapper = this,
6944 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / markup = ['<', nodeName, ' filled="f" stroked="f"'],
6945 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / style = ['position: ', 'absolute', ';'],
6946 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / isDiv = nodeName === 'div';
6947  
6948 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // divs and shapes need size
6949 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (nodeName === 'shape' || isDiv) {
6950 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / style.push('left:0;top:0;width:1px;height:1px;');
6951 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6952 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / style.push('visibility: ', isDiv ? 'hidden' : 'visible');
6953  
6954 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / markup.push(' style="', style.join(''), '"/>');
6955  
6956 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // create element with default attributes and style
6957 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (nodeName) {
6958 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / markup = isDiv || nodeName === 'span' || nodeName === 'img' ?
6959 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / markup.join('') :
6960 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / renderer.prepVML(markup);
6961 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.element = createElement(markup);
6962 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6963  
6964 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.renderer = renderer;
6965 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / },
6966  
6967 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
6968 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * Add the node to the given parent
6969 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @param {Object} parent
6970 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
6971 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / add: function(parent) {
6972 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / var wrapper = this,
6973 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / renderer = wrapper.renderer,
6974 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / element = wrapper.element,
6975 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / box = renderer.box,
6976 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / inverted = parent && parent.inverted,
6977  
6978 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // get the parent node
6979 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / parentNode = parent ?
6980 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / parent.element || parent :
6981 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / box;
6982  
6983 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (parent) {
6984 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / this.parentGroup = parent;
6985 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6986  
6987 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // if the parent group is inverted, apply inversion on all children
6988 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (inverted) { // only on groups
6989 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / renderer.invertChild(element, parentNode);
6990 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
6991  
6992 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // append it
6993 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / parentNode.appendChild(element);
6994  
6995 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // align text after adding to be able to read offset
6996 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.added = true;
6997 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (wrapper.alignOnAdd && !wrapper.deferUpdateTransform) {
6998 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.updateTransform();
6999 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
7000  
7001 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // fire an event for internal hooks
7002 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (wrapper.onAdd) {
7003 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.onAdd();
7004 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
7005  
7006 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // IE8 Standards can't set the class name before the element is appended
7007 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (this.className) {
7008 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / this.attr('class', this.className);
7009 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
7010  
7011 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / return wrapper;
7012 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / },
7013  
7014 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
7015 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * VML always uses htmlUpdateTransform
7016 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
7017 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / updateTransform: SVGElement.prototype.htmlUpdateTransform,
7018  
7019 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
7020 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * Set the rotation of a span with oldIE's filter
7021 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
7022 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / setSpanRotation: function() {
7023 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Adjust for alignment and rotation. Rotation of useHTML content is not yet implemented
7024 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // but it can probably be implemented for Firefox 3.5+ on user request. FF3.5+
7025 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // has support for CSS3 transform. The getBBox method also needs to be updated
7026 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // to compensate for the rotation, like it currently does for SVG.
7027 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Test case: http://jsfiddle.net/highcharts/Ybt44/
7028  
7029 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / var rotation = this.rotation,
7030 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / costheta = Math.cos(rotation * deg2rad),
7031 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / sintheta = Math.sin(rotation * deg2rad);
7032  
7033 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / css(this.element, {
7034 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / filter: rotation ? ['progid:DXImageTransform.Microsoft.Matrix(M11=', costheta,
7035 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / ', M12=', -sintheta, ', M21=', sintheta, ', M22=', costheta,
7036 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / ', sizingMethod=\'auto expand\')'
7037 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / ].join('') : 'none'
7038 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / });
7039 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / },
7040  
7041 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
7042 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * Get the positioning correction for the span after rotating.
7043 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
7044 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / getSpanCorrection: function(width, baseline, alignCorrection, rotation, align) {
7045  
7046 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / var costheta = rotation ? Math.cos(rotation * deg2rad) : 1,
7047 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / sintheta = rotation ? Math.sin(rotation * deg2rad) : 0,
7048 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / height = pick(this.elemHeight, this.element.offsetHeight),
7049 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / quad,
7050 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / nonLeft = align && align !== 'left';
7051  
7052 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // correct x and y
7053 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / this.xCorr = costheta < 0 && -width;
7054 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / this.yCorr = sintheta < 0 && -height;
7055  
7056 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // correct for baseline and corners spilling out after rotation
7057 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / quad = costheta * sintheta < 0;
7058 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / this.xCorr += sintheta * baseline * (quad ? 1 - alignCorrection : alignCorrection);
7059 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / this.yCorr -= costheta * baseline * (rotation ? (quad ? alignCorrection : 1 - alignCorrection) : 1);
7060 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // correct for the length/height of the text
7061 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (nonLeft) {
7062 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / this.xCorr -= width * alignCorrection * (costheta < 0 ? -1 : 1);
7063 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (rotation) {
7064 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / this.yCorr -= height * alignCorrection * (sintheta < 0 ? -1 : 1);
7065 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
7066 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / css(this.element, {
7067 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / textAlign: align
7068 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / });
7069 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
7070 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / },
7071  
7072 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
7073 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * Converts a subset of an SVG path definition to its VML counterpart. Takes an array
7074 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * as the parameter and returns a string.
7075 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
7076 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / pathToVML: function(value) {
7077 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // convert paths
7078 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / var i = value.length,
7079 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / path = [];
7080  
7081 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / while (i--) {
7082  
7083 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Multiply by 10 to allow subpixel precision.
7084 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Substracting half a pixel seems to make the coordinates
7085 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // align with SVG, but this hasn't been tested thoroughly
7086 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (isNumber(value[i])) {
7087 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / path[i] = Math.round(value[i] * 10) - 5;
7088 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / } else if (value[i] === 'Z') { // close the path
7089 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / path[i] = 'x';
7090 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / } else {
7091 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / path[i] = value[i];
7092  
7093 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // When the start X and end X coordinates of an arc are too close,
7094 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // they are rounded to the same value above. In this case, substract or
7095 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // add 1 from the end X and Y positions. #186, #760, #1371, #1410.
7096 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (value.isArc && (value[i] === 'wa' || value[i] === 'at')) {
7097 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Start and end X
7098 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (path[i + 5] === path[i + 7]) {
7099 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / path[i + 7] += value[i + 7] > value[i + 5] ? 1 : -1;
7100 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
7101 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Start and end Y
7102 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (path[i + 6] === path[i + 8]) {
7103 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / path[i + 8] += value[i + 8] > value[i + 6] ? 1 : -1;
7104 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
7105 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
7106 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
7107 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
7108  
7109  
7110 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // Loop up again to handle path shortcuts (#2132)
7111 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /*while (i++ < path.length) {
7112 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (path[i] === 'H') { // horizontal line to
7113 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / path[i] = 'L';
7114 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / path.splice(i + 2, 0, path[i - 1]);
7115 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / } else if (path[i] === 'V') { // vertical line to
7116 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / path[i] = 'L';
7117 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / path.splice(i + 1, 0, path[i - 2]);
7118 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
7119 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }*/
7120 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / return path.join(' ') || 'x';
7121 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / },
7122  
7123 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
7124 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * Set the element's clipping to a predefined rectangle
7125 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / *
7126 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @param {String} id The id of the clip rectangle
7127 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
7128 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / clip: function(clipRect) {
7129 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / var wrapper = this,
7130 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / clipMembers,
7131 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / cssRet;
7132  
7133 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (clipRect) {
7134 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / clipMembers = clipRect.members;
7135 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / erase(clipMembers, wrapper); // Ensure unique list of elements (#1258)
7136 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / clipMembers.push(wrapper);
7137 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.destroyClip = function() {
7138 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / erase(clipMembers, wrapper);
7139 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / };
7140 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / cssRet = clipRect.getCSS(wrapper);
7141  
7142 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / } else {
7143 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (wrapper.destroyClip) {
7144 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / wrapper.destroyClip();
7145 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
7146 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / cssRet = {
7147 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / clip: wrapper.docMode8 ? 'inherit' : 'rect(auto)'
7148 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }; // #1214
7149 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
7150  
7151 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / return wrapper.css(cssRet);
7152  
7153 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / },
7154  
7155 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
7156 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * Set styles for the element
7157 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @param {Object} styles
7158 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
7159 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / css: SVGElement.prototype.htmlCss,
7160  
7161 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
7162 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * Removes a child either by removeChild or move to garbageBin.
7163 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * Issue 490; in VML removeChild results in Orphaned nodes according to sIEve, discardElement does not.
7164 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
7165 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / safeRemoveChild: function(element) {
7166 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // discardElement will detach the node from its parent before attaching it
7167 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // to the garbage bin. Therefore it is important that the node is attached and have parent.
7168 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (element.parentNode) {
7169 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / discardElement(element);
7170 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
7171 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / },
7172  
7173 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
7174 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * Extend element.destroy by removing it from the clip members array
7175 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
7176 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / destroy: function() {
7177 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (this.destroyClip) {
7178 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / this.destroyClip();
7179 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
7180  
7181 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / return SVGElement.prototype.destroy.apply(this);
7182 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / },
7183  
7184 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
7185 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * Add an event listener. VML override for normalizing event parameters.
7186 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @param {String} eventType
7187 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @param {Function} handler
7188 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
7189 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / on: function(eventType, handler) {
7190 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // simplest possible event model for internal use
7191 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / this.element['on' + eventType] = function() {
7192 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / var evt = win.event;
7193 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / evt.target = evt.srcElement;
7194 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / handler(evt);
7195 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / };
7196 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / return this;
7197 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / },
7198  
7199 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
7200 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * In stacked columns, cut off the shadows so that they don't overlap
7201 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
7202 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / cutOffPath: function(path, length) {
7203  
7204 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / var len;
7205  
7206 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / path = path.split(/[ ,]/); // The extra comma tricks the trailing comma remover in "gulp scripts" task
7207 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / len = path.length;
7208  
7209 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (len === 9 || len === 11) {
7210 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / path[len - 4] = path[len - 2] = pInt(path[len - 2]) - 10 * length;
7211 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
7212 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / return path.join(' ');
7213 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / },
7214  
7215 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / /**
7216 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * Apply a drop shadow by copying elements and giving them different strokes
7217 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / * @param {Boolean|Object} shadowOptions
7218 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / */
7219 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / shadow: function(shadowOptions, group, cutOff) {
7220 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / var shadows = [],
7221 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / i,
7222 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / element = this.element,
7223 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / renderer = this.renderer,
7224 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / shadow,
7225 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / elemStyle = element.style,
7226 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / markup,
7227 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / path = element.path,
7228 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / strokeWidth,
7229 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / modifiedPath,
7230 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / shadowWidth,
7231 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / shadowElementOpacity;
7232  
7233 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / // some times empty paths are not strings
7234 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (path && typeof path.value !== 'string') {
7235 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / path = 'x';
7236 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / }
7237 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / modifiedPath = path;
7238  
7239 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / if (shadowOptions) {
7240 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / shadowWidth = pick(shadowOptions.width, 3);
7241 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / shadowElementOpacity = (shadowOptions.opacity || 0.15) / shadowWidth;
7242 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { / for (i = 1; i <= 3; i++) {
7243  
7244 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { strokeWidth = (shadowWidth * 2) + 1 - (2 * i);
7245  
7246 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // Cut off shadows for stacked column items
7247 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (cutOff) {
7248 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { modifiedPath = this.cutOffPath(path.value, strokeWidth + 0.5);
7249 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
7250  
7251 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { markup = ['
7252 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7253 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {>'
7254 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { ];
7255  
7256 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { shadow = createElement(renderer.prepVML(markup),
7257 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { null, {
7258 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { left: pInt(elemStyle.left) + pick(shadowOptions.offsetX, 1),
7259 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { top: pInt(elemStyle.top) + pick(shadowOptions.offsetY, 1)
7260 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
7261 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { );
7262 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (cutOff) {
7263 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { shadow.cutOff = strokeWidth + 1;
7264 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
7265  
7266 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // apply the opacity
7267 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { markup = [
7268 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { '<stroke color="',
7269 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { shadowOptions.color || '#000000',
7270 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { '" opacity="', shadowElementOpacity * i, '"/>'
7271 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { ];
7272 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { createElement(renderer.prepVML(markup), null, null, shadow);
7273  
7274  
7275 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // insert it
7276 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (group) {
7277 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { group.element.appendChild(shadow);
7278 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { } else {
7279 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { element.parentNode.insertBefore(shadow, element);
7280 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
7281  
7282 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // record it
7283 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { shadows.push(shadow);
7284  
7285 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
7286  
7287 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { this.shadows = shadows;
7288 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
7289 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { return this;
7290 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { },
7291 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { updateShadows: noop, // Used in SVG only
7292  
7293 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { setAttr: function(key, value) {
7294 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (this.docMode8) { // IE8 setAttribute bug
7295 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { this.element[key] = value;
7296 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { } else {
7297 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { this.element.setAttribute(key, value);
7298 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
7299 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { },
7300 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { classSetter: function(value) {
7301 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // IE8 Standards mode has problems retrieving the className unless set like this.
7302 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // IE8 Standards can't set the class name before the element is appended.
7303 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { (this.added ? this.element : this).className = value;
7304 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { },
7305 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { dashstyleSetter: function(value, key, element) {
7306 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { var strokeElem = element.getElementsByTagName('stroke')[0] ||
7307 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { createElement(this.renderer.prepVML(['>']), null, null, element);
7308 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { strokeElem[key] = value || 'solid';
7309 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { this[key] = value;
7310 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { /* because changing stroke-width will change the dash length
7311 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { and cause an epileptic effect */
7312 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { },
7313 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { dSetter: function(value, key, element) {
7314 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { var i,
7315 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { shadows = this.shadows;
7316 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { value = value || [];
7317 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { this.d = value.join && value.join(' '); // used in getter for animation
7318  
7319 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { element.path = value = this.pathToVML(value);
7320  
7321 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // update shadows
7322 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (shadows) {
7323 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { i = shadows.length;
7324 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { while (i--) {
7325 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { shadows[i].path = shadows[i].cutOff ? this.cutOffPath(value, shadows[i].cutOff) : value;
7326 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
7327 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
7328 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { this.setAttr(key, value);
7329 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { },
7330 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { fillSetter: function(value, key, element) {
7331 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { var nodeName = element.nodeName;
7332 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (nodeName === 'SPAN') { // text color
7333 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { element.style.color = value;
7334 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { } else if (nodeName !== 'IMG') { // #1336
7335 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { element.filled = value !== 'none';
7336 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { this.setAttr('fillcolor', this.renderer.color(value, element, key, this));
7337 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
7338 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { },
7339 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { 'fill-opacitySetter': function(value, key, element) {
7340 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { createElement(
7341 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { this.renderer.prepVML(['<', key.split('-')[0], ' opacity="', value, '"/>']),
7342 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { null,
7343 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { null,
7344 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { element
7345 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { );
7346 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { },
7347 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { opacitySetter: noop, // Don't bother - animation is too slow and filters introduce artifacts
7348 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { rotationSetter: function(value, key, element) {
7349 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { var style = element.style;
7350 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { this[key] = style[key] = value; // style is for #1873
7351  
7352 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // Correction for the 1x1 size of the shape container. Used in gauge needles.
7353 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { style.left = -Math.round(Math.sin(value * deg2rad) + 1) + 'px';
7354 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { style.top = Math.round(Math.cos(value * deg2rad)) + 'px';
7355 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { },
7356 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { strokeSetter: function(value, key, element) {
7357 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { this.setAttr('strokecolor', this.renderer.color(value, element, key, this));
7358 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { },
7359 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { 'stroke-widthSetter': function(value, key, element) {
7360 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { element.stroked = !!value; // VML "stroked" attribute
7361 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { this[key] = value; // used in getter, issue #113
7362 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (isNumber(value)) {
7363 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { value += 'px';
7364 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
7365 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { this.setAttr('strokeweight', value);
7366 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { },
7367 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { titleSetter: function(value, key) {
7368 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { this.setAttr(key, value);
7369 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { },
7370 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { visibilitySetter: function(value, key, element) {
7371  
7372 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // Handle inherited visibility
7373 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (value === 'inherit') {
7374 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { value = 'visible';
7375 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
7376  
7377 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // Let the shadow follow the main element
7378 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (this.shadows) {
7379 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { each(this.shadows, function(shadow) {
7380 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { shadow.style[key] = value;
7381 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { });
7382 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
7383  
7384 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // Instead of toggling the visibility CSS property, move the div out of the viewport.
7385 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // This works around #61 and #586
7386 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (element.nodeName === 'DIV') {
7387 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { value = value === 'hidden' ? '-999em' : 0;
7388  
7389 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // In order to redraw, IE7 needs the div to be visible when tucked away
7390 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // outside the viewport. So the visibility is actually opposite of
7391 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // the expected value. This applies to the tooltip only.
7392 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (!this.docMode8) {
7393 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { element.style[key] = value ? 'visible' : 'hidden';
7394 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
7395 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { key = 'top';
7396 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
7397 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { element.style[key] = value;
7398 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { },
7399 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { xSetter: function(value, key, element) {
7400 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { this[key] = value; // used in getter
7401  
7402 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (key === 'x') {
7403 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { key = 'left';
7404 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { } else if (key === 'y') {
7405 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { key = 'top';
7406 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
7407 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { /* else {
7408 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {Math.max(0, value); // don't set width or height below zero (#311)
7409 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }*/
7410  
7411 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // clipping rectangle special
7412 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (this.updateClipping) {
7413 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { this[key] = value; // the key is now 'left' or 'top' for 'x' and 'y'
7414 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { this.updateClipping();
7415 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { } else {
7416 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // normal
7417 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { element.style[key] = value;
7418 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
7419 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { },
7420 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { zIndexSetter: function(value, key, element) {
7421 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { element.style[key] = value;
7422 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
7423 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { };
7424 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { VMLElement['stroke-opacitySetter'] = VMLElement['fill-opacitySetter'];
7425 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { H.VMLElement = VMLElement = extendClass(SVGElement, VMLElement);
7426  
7427 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // Some shared setters
7428 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { VMLElement.prototype.ySetter =
7429 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { VMLElement.prototype.widthSetter =
7430 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { VMLElement.prototype.heightSetter =
7431 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { VMLElement.prototype.xSetter;
7432  
7433  
7434 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { /**
7435 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7436 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/
7437 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { VMLRendererExtension = { // inherit SVGRenderer
7438  
7439 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { Element: VMLElement,
7440 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { isIE8: win.navigator.userAgent.indexOf('MSIE 8.0') > -1,
7441  
7442  
7443 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { /**
7444 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7445 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7446 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7447 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7448 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/
7449 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { init: function(container, width, height) {
7450 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { var renderer = this,
7451 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { boxWrapper,
7452 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { box,
7453 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { css;
7454  
7455 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { renderer.alignedObjects = [];
7456  
7457 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { boxWrapper = renderer.createElement('div')
7458 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { .css({
7459 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { position: 'relative'
7460 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { });
7461 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { box = boxWrapper.element;
7462 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { container.appendChild(boxWrapper.element);
7463  
7464  
7465 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // generate the containing box
7466 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { renderer.isVML = true;
7467 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { renderer.box = box;
7468 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { renderer.boxWrapper = boxWrapper;
7469 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { renderer.gradients = {};
7470 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { renderer.cache = {}; // Cache for numerical bounding boxes
7471 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { renderer.cacheKeys = [];
7472 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { renderer.imgCount = 0;
7473  
7474  
7475 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { renderer.setSize(width, height, false);
7476  
7477 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // The only way to make IE6 and IE7 print is to use a global namespace. However,
7478 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // with IE8 the only way to make the dynamic shapes visible in screen and print mode
7479 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // seems to be to add the xmlns attribute and the behaviour style inline.
7480 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (!doc.namespaces.hcv) {
7481  
7482 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { doc.namespaces.add('hcv', 'urn:schemas-microsoft-com:vml');
7483  
7484 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // Setup default CSS (#2153, #2368, #2384)
7485 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { css = 'hcv\\:fill, hcv\\:path, hcv\\:shape, hcv\\:stroke' +
7486 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { '{ behavior:url(#default#VML); display: inline-block; } ';
7487 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { try {
7488 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { doc.createStyleSheet().cssText = css;
7489 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { } catch (e) {
7490 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { doc.styleSheets[0].cssText += css;
7491 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
7492  
7493 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
7494 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { },
7495  
7496  
7497 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { /**
7498 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7499 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7500 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/
7501 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { isHidden: function() {
7502 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { return !this.box.offsetWidth;
7503 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { },
7504  
7505 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { /**
7506 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7507 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {for setting the CSS style to all associated members.
7508 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7509 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7510 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7511 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7512 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7513 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/
7514 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { clipRect: function(x, y, width, height) {
7515  
7516 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // create a dummy element
7517 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { var clipRect = this.createElement(),
7518 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { isObj = isObject(x);
7519  
7520 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // mimic a rectangle with its style object for automatic updating in attr
7521 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { return extend(clipRect, {
7522 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { members: [],
7523 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { count: 0,
7524 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { left: (isObj ? x.x : x) + 1,
7525 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { top: (isObj ? x.y : y) + 1,
7526 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { width: (isObj ? x.width : width) - 1,
7527 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { height: (isObj ? x.height : height) - 1,
7528 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { getCSS: function(wrapper) {
7529 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { var element = wrapper.element,
7530 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { nodeName = element.nodeName,
7531 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { isShape = nodeName === 'shape',
7532 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { inverted = wrapper.inverted,
7533 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { rect = this,
7534 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { top = rect.top - (isShape ? element.offsetTop : 0),
7535 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { left = rect.left,
7536 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { right = left + rect.width,
7537 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { bottom = top + rect.height,
7538 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { ret = {
7539 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { clip: 'rect(' +
7540 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { Math.round(inverted ? left : top) + 'px,' +
7541 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { Math.round(inverted ? bottom : right) + 'px,' +
7542 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { Math.round(inverted ? right : bottom) + 'px,' +
7543 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { Math.round(inverted ? top : left) + 'px)'
7544 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { };
7545  
7546 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // issue 74 workaround
7547 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (!inverted && wrapper.docMode8 && nodeName === 'DIV') {
7548 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { extend(ret, {
7549 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { width: right + 'px',
7550 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { height: bottom + 'px'
7551 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { });
7552 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
7553 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { return ret;
7554 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { },
7555  
7556 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // used in attr and animation to update the clipping of all members
7557 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { updateClipping: function() {
7558 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { each(clipRect.members, function(member) {
7559 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // Member.element is falsy on deleted series, like in
7560 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // stock/members/series-remove demo. Should be removed
7561 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // from members, but this will do.
7562 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (member.element) {
7563 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { member.css(clipRect.getCSS(member));
7564 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
7565 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { });
7566 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
7567 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { });
7568  
7569 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { },
7570  
7571  
7572 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { /**
7573 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {return it if it's a string, make it a gradient if it's a
7574 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7575 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7576 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7577 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/
7578 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { color: function(color, elem, prop, wrapper) {
7579 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { var renderer = this,
7580 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { colorObject,
7581 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { regexRgba = /^rgba/,
7582 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { markup,
7583 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { fillType,
7584 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { ret = 'none';
7585  
7586 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // Check for linear or radial gradient
7587 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (color && color.linearGradient) {
7588 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { fillType = 'gradient';
7589 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { } else if (color && color.radialGradient) {
7590 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { fillType = 'pattern';
7591 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
7592  
7593  
7594 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (fillType) {
7595  
7596 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { var stopColor,
7597 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { stopOpacity,
7598 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { gradient = color.linearGradient || color.radialGradient,
7599 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { x1,
7600 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { y1,
7601 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { x2,
7602 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { y2,
7603 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { opacity1,
7604 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { opacity2,
7605 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { color1,
7606 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { color2,
7607 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { fillAttr = '',
7608 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { stops = color.stops,
7609 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { firstStop,
7610 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { lastStop,
7611 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { colors = [],
7612 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { addFillNode = function() {
7613 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // Add the fill subnode. When colors attribute is used, the meanings of opacity and o:opacity2
7614 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // are reversed.
7615 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { markup = ['
7616 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7617 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7618 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {>'
7619 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { ];
7620 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { createElement(renderer.prepVML(markup), null, null, elem);
7621 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { };
7622  
7623 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // Extend from 0 to 1
7624 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { firstStop = stops[0];
7625 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { lastStop = stops[stops.length - 1];
7626 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (firstStop[0] > 0) {
7627 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { stops.unshift([
7628 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { 0,
7629 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { firstStop[1]
7630 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { ]);
7631 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
7632 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (lastStop[0] < 1) {
7633 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { stops.push([
7634 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { 1,
7635 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { lastStop[1]
7636 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { ]);
7637 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
7638  
7639 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // Compute the stops
7640 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { each(stops, function(stop, i) {
7641 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (regexRgba.test(stop[1])) {
7642 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { colorObject = H.color(stop[1]);
7643 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { stopColor = colorObject.get('rgb');
7644 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { stopOpacity = colorObject.get('a');
7645 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { } else {
7646 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { stopColor = stop[1];
7647 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { stopOpacity = 1;
7648 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
7649  
7650 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // Build the color attribute
7651 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { colors.push((stop[0] * 100) + '% ' + stopColor);
7652  
7653 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // Only start and end opacities are allowed, so we use the first and the last
7654 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (!i) {
7655 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { opacity1 = stopOpacity;
7656 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { color2 = stopColor;
7657 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { } else {
7658 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { opacity2 = stopOpacity;
7659 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { color1 = stopColor;
7660 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
7661 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { });
7662  
7663 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // Apply the gradient to fills only.
7664 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (prop === 'fill') {
7665  
7666 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // Handle linear gradient angle
7667 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (fillType === 'gradient') {
7668 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { x1 = gradient.x1 || gradient[0] || 0;
7669 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { y1 = gradient.y1 || gradient[1] || 0;
7670 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { x2 = gradient.x2 || gradient[2] || 0;
7671 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { y2 = gradient.y2 || gradient[3] || 0;
7672 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { fillAttr = 'angle="' + (90 - Math.atan(
7673 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { (y2 - y1) / // y vector
7674 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { (x2 - x1) // x vector
7675 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { ) * 180 / Math.PI) + '"';
7676  
7677 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { addFillNode();
7678  
7679 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // Radial (circular) gradient
7680 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { } else {
7681  
7682 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { var r = gradient.r,
7683 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { sizex = r * 2,
7684 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { sizey = r * 2,
7685 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { cx = gradient.cx,
7686 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { cy = gradient.cy,
7687 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { radialReference = elem.radialReference,
7688 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { bBox,
7689 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { applyRadialGradient = function() {
7690 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (radialReference) {
7691 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { bBox = wrapper.getBBox();
7692 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { cx += (radialReference[0] - bBox.x) / bBox.width - 0.5;
7693 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { cy += (radialReference[1] - bBox.y) / bBox.height - 0.5;
7694 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { sizex *= radialReference[2] / bBox.width;
7695 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { sizey *= radialReference[2] / bBox.height;
7696 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
7697 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { fillAttr = 'src="' + H.getOptions().global.VMLRadialGradientURL + '" ' +
7698 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { 'size="' + sizex + ',' + sizey + '" ' +
7699 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { 'origin="0.5,0.5" ' +
7700 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { 'position="' + cx + ',' + cy + '" ' +
7701 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { 'color2="' + color2 + '" ';
7702  
7703 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { addFillNode();
7704 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { };
7705  
7706 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // Apply radial gradient
7707 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (wrapper.added) {
7708 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { applyRadialGradient();
7709 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { } else {
7710 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // We need to know the bounding box to get the size and position right
7711 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { wrapper.onAdd = applyRadialGradient;
7712 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
7713  
7714 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // The fill element's color attribute is broken in IE8 standards mode, so we
7715 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// need to set the parent shape's fillcolor attribute instead.
7716 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { ret = color1;
7717 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7718  
7719 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// Gradients are not supported for VML stroke, return the first color. #722.
7720 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { } else {
7721 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7722 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7723  
7724 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// If the color is an rgba color, split it and add a fill node
7725 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // to hold the opacity component
7726 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { } else if (regexRgba.test(color) && elem.tagName !== 'IMG') {
7727  
7728 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7729  
7730 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'-opacitySetter'](colorObject.get('a'), prop, elem);
7731  
7732 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'rgb');
7733  
7734  
7735 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {else {
7736 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {var propNodes = elem.getElementsByTagName(prop); // 'stroke' or 'fill' node
7737 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (propNodes.length) {
7738 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7739 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'solid';
7740 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7741 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7742 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7743  
7744 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {return ret;
7745 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7746  
7747 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/**
7748 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * Take a VML string and prepare it for either IE8 or IE6/IE7.
7749 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @param {Array} markup A string array of the VML markup to prepare
7750 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
7751 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {function(markup) {
7752 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {var vmlStyle = 'display:inline-block;behavior:url(#default#VML);',
7753 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {this.isIE8;
7754  
7755 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'');
7756  
7757 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {if (isIE8) { // add xmlns and style inline
7758 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { markup = markup.replace('/>', ' xmlns="urn:schemas-microsoft-com:vml" />');
7759 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {if (markup.indexOf('style="') === -1) {
7760 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'/>', ' style="' + vmlStyle + '" />');
7761 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {else {
7762 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'style="', 'style="' + vmlStyle);
7763 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7764  
7765 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {else { // add namespace
7766 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { markup = markup.replace('<', '<hcv:');
7767 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7768  
7769 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {return markup;
7770 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7771  
7772 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/**
7773 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * Create rotated and aligned text
7774 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @param {String} str
7775 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @param {Number} x
7776 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @param {Number} y
7777 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
7778 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7779  
7780 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/**
7781 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * Create and return a path element
7782 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @param {Array} path
7783 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
7784 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {function(path) {
7785 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {var attr = {
7786 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// subpixel precision down to 0.1 (width and height = 1px)
7787 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { coordsize: '10 10'
7788 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7789 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {if (isArray(path)) {
7790 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7791 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {else if (isObject(path)) { // attributes
7792 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { extend(attr, path);
7793 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7794 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// create the shape
7795 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { return this.createElement('shape').attr(attr);
7796 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7797  
7798 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/**
7799 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * Create and return a circle element. In VML circles are implemented as
7800 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * shapes, which is faster than v:oval
7801 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @param {Number} x
7802 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @param {Number} y
7803 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @param {Number} r
7804 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
7805 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {function(x, y, r) {
7806 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {var circle = this.symbol('circle');
7807 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {if (isObject(x)) {
7808 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7809 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7810 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7811 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7812 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {true; // Causes x and y to mean center (#1682)
7813 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { circle.r = r;
7814 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {return circle.attr({
7815 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7816 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7817 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7818 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7819  
7820 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/**
7821 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * Create a group using an outer div and an inner v:group to allow rotating
7822 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * and flipping. A simple v:group would have problems with positioning
7823 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * child HTML elements and CSS clip.
7824 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { *
7825 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @param {String} name The name of the group
7826 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
7827 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {function(name) {
7828 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {var wrapper,
7829 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7830  
7831 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// set the class name
7832 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (name) {
7833 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7834 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'className': 'highcharts-' + name,
7835 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'class': 'highcharts-' + name
7836 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7837 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7838  
7839 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// the div to hold HTML and clipping
7840 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { wrapper = this.createElement('div').attr(attribs);
7841  
7842 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {return wrapper;
7843 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7844  
7845 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/**
7846 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * VML override to create a regular HTML image
7847 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @param {String} src
7848 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @param {Number} x
7849 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @param {Number} y
7850 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @param {Number} width
7851 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @param {Number} height
7852 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
7853 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {function(src, x, y, width, height) {
7854 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {var obj = this.createElement('img')
7855 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7856 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7857 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7858  
7859 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {if (arguments.length > 1) {
7860 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7861 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7862 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7863 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7864 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7865 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7866 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7867 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {return obj;
7868 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7869  
7870 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/**
7871 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * For rectangles, VML uses a shape for rect to overcome bugs and rotation problems
7872 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
7873 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {function(nodeName) {
7874 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {return nodeName === 'rect' ?
7875 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {this.symbol(nodeName) :
7876 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {this, nodeName);
7877 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7878  
7879 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/**
7880 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * In the VML renderer, each child of an inverted div (group) is inverted
7881 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @param {Object} element
7882 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @param {Object} parentNode
7883 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
7884 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {function(element, parentNode) {
7885 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {var ren = this,
7886 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7887 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'IMG' && element.style; // #1111
7888  
7889 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7890 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'x',
7891 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7892 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7893 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7894 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7895  
7896 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// Recursively invert child elements, needed for nested composite
7897 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // shapes like box plots and error bars. #1680, #1806.
7898 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { each(element.childNodes, function(child) {
7899 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7900 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7901 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7902  
7903 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/**
7904 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * Symbol definitions that override the parent SVG renderer's symbols
7905 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { *
7906 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
7907 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7908 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// VML specific arc function
7909 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { arc: function(x, y, w, h, options) {
7910 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {var start = options.start,
7911 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7912 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7913 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7914 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {Math.cos(start),
7915 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {Math.sin(start),
7916 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {Math.cos(end),
7917 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {Math.sin(end),
7918 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7919  
7920 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {if (end - start === 0) { // no angle, don't show it.
7921 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { return ['x'];
7922 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7923  
7924 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7925 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'wa', // clockwise arc to
7926 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { x - radius, // left
7927 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { y - radius, // top
7928 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { x + radius, // right
7929 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { y + radius, // bottom
7930 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { x + radius * cosStart, // start x
7931 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { y + radius * sinStart, // start y
7932 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { x + radius * cosEnd, // end x
7933 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { y + radius * sinEnd // end y
7934 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { ];
7935  
7936 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {if (options.open && !innerRadius) {
7937 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7938 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'e',
7939 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'M',
7940 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// - innerRadius,
7941 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { y // - innerRadius
7942 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { );
7943 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7944  
7945 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7946 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'at', // anti clockwise arc to
7947 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { x - innerRadius, // left
7948 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { y - innerRadius, // top
7949 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { x + innerRadius, // right
7950 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { y + innerRadius, // bottom
7951 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { x + innerRadius * cosEnd, // start x
7952 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { y + innerRadius * sinEnd, // start y
7953 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { x + innerRadius * cosStart, // end x
7954 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { y + innerRadius * sinStart, // end y
7955 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { 'x', // finish path
7956 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { 'e' // close
7957 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { );
7958  
7959 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {true;
7960 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {return ret;
7961  
7962 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7963 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// Add circle symbol path. This performs significantly faster than v:oval.
7964 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { circle: function(x, y, w, h, wrapper) {
7965  
7966 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {if (wrapper && defined(wrapper.r)) {
7967 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7968 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7969  
7970 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// Center correction, #1682
7971 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (wrapper && wrapper.isCircle) {
7972 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/ 2;
7973 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { y -= h / 2;
7974 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7975  
7976 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// Return the path
7977 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { return [
7978 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'wa', // clockwisearcto
7979 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { x, // left
7980 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { y, // top
7981 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { x + w, // right
7982 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { y + h, // bottom
7983 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { x + w, // start x
7984 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { y + h / 2, // start y
7985 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { x + w, // end x
7986 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { y + h / 2, // end y
7987 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //'x', // finish path
7988 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { 'e' // close
7989 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { ];
7990 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7991 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/**
7992 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * Add rectangle symbol path which eases rotation and omits arcsize problems
7993 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * compared to the built-in VML roundrect shape. When borders are not rounded,
7994 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * use the simpler square path, else use the callout path without the arrow.
7995 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
7996 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {function(x, y, w, h, options) {
7997 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {return SVGRenderer.prototype.symbols[!defined(options) || !options.r ? 'square' : 'callout'].call(0, x, y, w, h, options);
7998 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
7999 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8000 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8001 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {function() {
8002 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {this.init.apply(this, arguments);
8003 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8004 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8005  
8006 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// general renderer
8007 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { H.Renderer = VMLRenderer;
8008 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8009  
8010 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// This method is used with exporting in old IE, when emulating SVG (see #2314)
8011 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { SVGRenderer.prototype.measureSpanWidth = function(text, styles) {
8012 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {var measuringSpan = doc.createElement('span'),
8013 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8014 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8015  
8016 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8017 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8018 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {this.box.appendChild(measuringSpan);
8019 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8020 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// #2463
8021 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { return offsetWidth;
8022 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8023  
8024  
8025 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/* ****************************************************************************
8026 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * *
8027 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * END OF INTERNET EXPLORER <= 8 SPECIFIC CODE *
8028 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * *
8029 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { *****************************************************************************/
8030  
8031  
8032 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8033 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {function(H) {
8034 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/**
8035 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * (c) 2010-2017 Torstein Honsi
8036 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { *
8037 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * License: www.highcharts.com/license
8038 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
8039 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {var correctFloat = H.correctFloat,
8040 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8041 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8042 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8043 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8044 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8045 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8046  
8047 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/**
8048 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * The Tick class
8049 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
8050 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {function(axis, pos, type, noLabel) {
8051 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {this.axis = axis;
8052 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {this.pos = pos;
8053 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {this.type = type || '';
8054 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {this.isNew = true;
8055 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {this.isNewLabel = true;
8056  
8057 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {if (!type && !noLabel) {
8058 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {this.addLabel();
8059 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8060 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8061  
8062 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8063 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/**
8064 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * Write the tick label
8065 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
8066 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {function() {
8067 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {var tick = this,
8068 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8069 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8070 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8071 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8072 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8073 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8074 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8075 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8076 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8077 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8078 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8079 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8080 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8081 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8082 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8083 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8084 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8085  
8086 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// Set the datetime label format. If a higher rank is set for this position, use that. If not,
8087 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // use the general format.
8088 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (axis.isDatetimeAxis && tickPositionInfo) {
8089 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8090 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8091 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8092 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8093 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8094 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// set properties for access in render method
8095 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { tick.isFirst = isFirst;
8096 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8097  
8098 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// get the string
8099 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { str = axis.labelFormatter.call({
8100 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8101 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8102 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8103 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8104 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8105 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8106 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8107  
8108 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// prepare CSS
8109 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //css = width && { width: Math.max(1, Math.round(width - 2 * (labelOptions.padding || 10))) + 'px' };
8110  
8111 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// first call
8112 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (!defined(label)) {
8113  
8114 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8115 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8116 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8117 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8118 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8119 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8120 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8121 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8122  
8123 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// without position absolute, IE export sometimes is wrong
8124 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { .css(merge(labelOptions.style))
8125  
8126 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8127 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {null;
8128 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// Un-rotated length
8129 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { tick.rotation = 0; // Base value to detect change for new calls to getBBox
8130  
8131 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// update
8132 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { } else if (label) {
8133 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8134 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8135 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8136 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8137 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8138  
8139 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/**
8140 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * Get the offset height or width of the label
8141 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
8142 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {function() {
8143 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {return this.label ?
8144 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {this.label.getBBox()[this.axis.horiz ? 'height' : 'width'] :
8145 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8146 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8147  
8148 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/**
8149 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * Handle the label overflow by adjusting the labels to the left and right edge, or
8150 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * hide them if they collide into the neighbour label.
8151 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
8152 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {function(xy) {
8153 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {var axis = this.axis,
8154 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8155 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8156 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8157 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {Math.min(axis.pos, spacing[3])),
8158 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {Math.max(axis.pos + axis.len, chartWidth - spacing[1])),
8159 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {this.label,
8160 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {this.rotation,
8161 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8162 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8163 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8164 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8165 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8166 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8167 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8168 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8169 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8170 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8171 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8172 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8173 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8174 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8175  
8176 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// Check if the label overshoots the chart spacing box. If it does, move it.
8177 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // If it now overshoots the slotWidth, add ellipsis.
8178 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (!rotation) {
8179 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8180 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8181  
8182 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {if (leftPos < leftBound) {
8183 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8184 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {else if (rightPos > rightBound) {
8185 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8186 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8187 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8188  
8189 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {Math.min(slotWidth, modifiedSlotWidth); // #4177
8190 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (modifiedSlotWidth < slotWidth && axis.labelAlign === 'center') {
8191 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8192 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {Math.min(labelWidth, modifiedSlotWidth)));
8193 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8194 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// If the label width exceeds the available space, set a text width to be
8195 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // picked up below. Also, if a width has been set before, we need to set a new
8196 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // one because the reported labelWidth will be limited by the box (#3938).
8197 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (labelWidth > modifiedSlotWidth || (axis.autoRotation && (label.styles || {}).width)) {
8198 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8199 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8200  
8201 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// Add ellipsis to prevent rotated labels to be clipped against the edge of the chart
8202 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { } else if (rotation < 0 && pxPos - factor * labelWidth < leftBound) {
8203 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {Math.round(pxPos / Math.cos(rotation * deg2rad) - leftBound);
8204 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { } else if (rotation > 0 && pxPos + factor * labelWidth > rightBound) {
8205 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { textWidth = Math.round((chartWidth - pxPos) / Math.cos(rotation * deg2rad));
8206 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8207  
8208 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {if (textWidth) {
8209 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8210 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {if (!(axis.options.labels.style || {}).textOverflow) {
8211 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'ellipsis';
8212 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8213 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8214 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8215 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8216  
8217 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/**
8218 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * Get the x and y position for ticks and labels
8219 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
8220 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {function(horiz, pos, tickmarkOffset, old) {
8221 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {var axis = this.axis,
8222 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8223 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8224  
8225 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {return {
8226 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8227 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {null, null, old) + axis.transB : axis.left + axis.offset +
8228 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8229 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8230  
8231 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8232  
8233 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8234 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {null, null, old) - axis.transB
8235 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8236  
8237 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8238  
8239 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/**
8240 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * Get the x, y position of the tick label
8241 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
8242 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {function(x, y, label, horiz, labelOptions, tickmarkOffset, index, step) {
8243 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {var axis = this.axis,
8244 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8245 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8246 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8247 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8248 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8249 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8250 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8251 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8252 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8253  
8254 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {if (!defined(yOffset)) {
8255 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {if (axis.side === 0) {
8256 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8257 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {else if (axis.side === 2) {
8258 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8259 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {else {
8260 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// #3140, #3140
8261 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { yOffset = Math.cos(label.rotation * deg2rad) * (rotCorr.y - label.getBBox(false, 0).height / 2);
8262 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
8263 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
8264  
8265 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { x = x + labelOptions.x + rotCorr.x - (tickmarkOffset && horiz ?
8266 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { tickmarkOffset * transA * (reversed ? -1 : 1) : 0);
8267 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { y = y + yOffset - (tickmarkOffset && !horiz ?
8268 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { tickmarkOffset * transA * (reversed ? 1 : -1) : 0);
8269  
8270 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // Correct for staggered labels
8271 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (staggerLines) {
8272 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { line = (index / (step || 1) % staggerLines);
8273 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {if (axis.opposite) {
8274 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8275 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8276 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/ staggerLines);
8277 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
8278  
8279 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { return {
8280 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { x: x,
8281 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { y: Math.round(y)
8282 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { };
8283 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { },
8284  
8285 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { /**
8286 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {return the path of the marker
8287 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/
8288 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { getMarkPath: function(x, y, tickLength, tickWidth, horiz, renderer) {
8289 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { return renderer.crispLine([
8290 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { 'M',
8291 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { x,
8292 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { y,
8293 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { 'L',
8294 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { x + (horiz ? 0 : -tickLength),
8295 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { y + (horiz ? tickLength : 0)
8296 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { ], tickWidth);
8297 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { },
8298  
8299 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { /**
8300 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8301 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8302 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8303 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {for avoiding overlapping 1 or -1
8304 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {return {undefined}
8305 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/
8306 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { renderGridLine: function(old, opacity, reverseCrisp) {
8307 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { var tick = this,
8308 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis = tick.axis,
8309 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { options = axis.options,
8310 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { gridLine = tick.gridLine,
8311 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { gridLinePath,
8312 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { attribs = {},
8313 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { pos = tick.pos,
8314 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { type = tick.type,
8315 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { tickmarkOffset = axis.tickmarkOffset,
8316 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { renderer = axis.chart.renderer;
8317  
8318  
8319 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { var gridPrefix = type ? type + 'Grid' : 'grid',
8320 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { gridLineWidth = options[gridPrefix + 'LineWidth'],
8321 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { gridLineColor = options[gridPrefix + 'LineColor'],
8322 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { dashStyle = options[gridPrefix + 'LineDashStyle'];
8323  
8324  
8325 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (!gridLine) {
8326  
8327 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { attribs.stroke = gridLineColor;
8328 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { attribs['stroke-width'] = gridLineWidth;
8329 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (dashStyle) {
8330 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { attribs.dashstyle = dashStyle;
8331 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
8332  
8333 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (!type) {
8334 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { attribs.zIndex = 1;
8335 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
8336 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (old) {
8337 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { attribs.opacity = 0;
8338 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
8339 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { tick.gridLine = gridLine = renderer.path()
8340 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { .attr(attribs)
8341 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { .addClass(
8342 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { 'highcharts-' + (type ? type + '-' : '') + 'grid-line'
8343 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { )
8344 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { .add(axis.gridGroup);
8345 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
8346  
8347 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // If the parameter 'old' is set, the current call will be followed
8348 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // by another call, therefore do not do any animations this time
8349 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (!old && gridLine) {
8350 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { gridLinePath = axis.getPlotLinePath(
8351 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { pos + tickmarkOffset,
8352 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { gridLine.strokeWidth() * reverseCrisp,
8353 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { old, true
8354 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { );
8355 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (gridLinePath) {
8356 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { gridLine[tick.isNew ? 'attr' : 'animate']({
8357 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { d: gridLinePath,
8358 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { opacity: opacity
8359 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { });
8360 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
8361 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
8362 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { },
8363  
8364 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { /**
8365 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8366 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8367 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8368 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8369 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8370 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {for avoiding overlapping 1 or -1
8371 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {return {undefined}
8372 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/
8373 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { renderMark: function(xy, opacity, reverseCrisp) {
8374 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { var tick = this,
8375 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis = tick.axis,
8376 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { options = axis.options,
8377 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { renderer = axis.chart.renderer,
8378 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { type = tick.type,
8379 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { tickPrefix = type ? type + 'Tick' : 'tick',
8380 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { tickSize = axis.tickSize(tickPrefix),
8381 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { mark = tick.mark,
8382 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { isNewMark = !mark,
8383 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { x = xy.x,
8384 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { y = xy.y;
8385  
8386  
8387 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { var tickWidth = pick(
8388 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { options[tickPrefix + 'Width'], !type && axis.isXAxis ? 1 : 0
8389 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { ), // X axis defaults to 1
8390 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { tickColor = options[tickPrefix + 'Color'];
8391  
8392  
8393 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (tickSize) {
8394  
8395 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // negate the length
8396 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (axis.opposite) {
8397 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { tickSize[0] = -tickSize[0];
8398 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
8399  
8400 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // First time, create it
8401 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (isNewMark) {
8402 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { tick.mark = mark = renderer.path()
8403 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { .addClass('highcharts-' + (type ? type + '-' : '') + 'tick')
8404 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { .add(axis.axisGroup);
8405  
8406  
8407 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { mark.attr({
8408 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { stroke: tickColor,
8409 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { 'stroke-width': tickWidth
8410 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { });
8411  
8412 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
8413 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { mark[isNewMark ? 'attr' : 'animate']({
8414 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { d: tick.getMarkPath(
8415 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { x,
8416 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { y,
8417 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { tickSize[0],
8418 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { mark.strokeWidth() * reverseCrisp,
8419 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.horiz,
8420 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { renderer),
8421 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { opacity: opacity
8422 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { });
8423  
8424 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
8425 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { },
8426  
8427 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { /**
8428 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8429 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {in init(), so it should only
8430 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8431 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8432 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8433 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8434 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8435 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8436 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8437 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {return {undefined}
8438 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/
8439 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { renderLabel: function(xy, old, opacity, index) {
8440 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { var tick = this,
8441 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis = tick.axis,
8442 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { horiz = axis.horiz,
8443 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { options = axis.options,
8444 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { label = tick.label,
8445 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { labelOptions = options.labels,
8446 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { step = labelOptions.step,
8447 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { tickmarkOffset = axis.tickmarkOffset,
8448 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { show = true,
8449 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { x = xy.x,
8450 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { y = xy.y;
8451 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (label && isNumber(x)) {
8452 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { label.xy = xy = tick.getLabelPosition(
8453 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { x,
8454 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { y,
8455 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { label,
8456 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { horiz,
8457 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { labelOptions,
8458 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { tickmarkOffset,
8459 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { index,
8460 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { step
8461 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { );
8462  
8463 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // Apply show first and show last. If the tick is both first and
8464 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // last, it is a single centered tick, in which case we show the
8465 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // label anyway (#2100).
8466 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (
8467 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { (
8468 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { tick.isFirst &&
8469 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { !tick.isLast &&
8470 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { !pick(options.showFirstLabel, 1)
8471 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { ) ||
8472 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { (
8473 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { tick.isLast &&
8474 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { !tick.isFirst &&
8475 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { !pick(options.showLastLabel, 1)
8476 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { )
8477 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { ) {
8478 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { show = false;
8479  
8480 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // Handle label overflow and show or hide accordingly
8481 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { } else if (horiz && !axis.isRadial && !labelOptions.step &&
8482 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { !labelOptions.rotation && !old && opacity !== 0) {
8483 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { tick.handleOverflow(xy);
8484 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
8485  
8486 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // apply step
8487 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (step && index % step) {
8488 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // show those indices dividable by step
8489 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { show = false;
8490 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
8491  
8492 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // Set the new position, and show or hide
8493 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (show && isNumber(xy.y)) {
8494 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { xy.opacity = opacity;
8495 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { label[tick.isNewLabel ? 'attr' : 'animate'](xy);
8496 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { tick.isNewLabel = false;
8497 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { } else {
8498 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { label.attr('y', -9999); // #1338
8499 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { tick.isNewLabel = true;
8500 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
8501 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { tick.isNew = false;
8502 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
8503 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { },
8504  
8505 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { /**
8506 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {in place
8507 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8508 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8509 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {new
8510 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8511 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/
8512 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { render: function(index, old, opacity) {
8513 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { var tick = this,
8514 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis = tick.axis,
8515 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { horiz = axis.horiz,
8516 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { pos = tick.pos,
8517 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { tickmarkOffset = axis.tickmarkOffset,
8518 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { xy = tick.getPosition(horiz, pos, tickmarkOffset, old),
8519 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { x = xy.x,
8520 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { y = xy.y,
8521 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { reverseCrisp = ((horiz && x === axis.pos + axis.len) ||
8522 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { (!horiz && y === axis.pos)) ? -1 : 1; // #1480, #1687
8523  
8524 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { opacity = pick(opacity, 1);
8525 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { this.isActive = true;
8526  
8527 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // Create the grid line
8528 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { this.renderGridLine(old, opacity, reverseCrisp);
8529  
8530 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // create the tick mark
8531 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { this.renderMark(xy, opacity, reverseCrisp);
8532  
8533 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // the label is created on init - now move it into place
8534 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { this.renderLabel(xy, old, opacity, index);
8535 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { },
8536  
8537 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { /**
8538 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {for the tick prototype
8539 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/
8540 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { destroy: function() {
8541 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { destroyObjectProperties(this, this.axis);
8542 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
8543 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { };
8544  
8545 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }(Highcharts));
8546 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { var Axis = (function(H) {
8547 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { /**
8548 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8549 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8550 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/license
8551 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
8552  
8553 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {var addEvent = H.addEvent,
8554 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8555 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8556 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8557 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8558 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8559 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8560 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8561 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8562 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8563 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8564 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8565 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8566 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8567 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8568 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8569 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8570 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8571 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8572 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8573 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8574 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8575 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8576 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8577 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8578 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8579 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8580 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8581  
8582 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/**
8583 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * Create a new axis object. Called internally when instanciating a new chart or
8584 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * adding axes by {@link Highcharts.Chart#addAxis}.
8585 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { *
8586 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * A chart can have from 0 axes (pie chart) to multiples. In a normal, single
8587 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * series cartesian chart, there is one X axis and one Y axis.
8588 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { *
8589 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * The X axis or axes are referenced by {@link Highcharts.Chart.xAxis}, which is
8590 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * an array of Axis objects. If there is only one axis, it can be referenced
8591 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * through `chart.xAxis[0]`, and multiple axes have increasing indices. The same
8592 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * pattern goes for Y axes.
8593 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { *
8594 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * If you need to get the axes from a series object, use the `series.xAxis` and
8595 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * `series.yAxis` properties. These are not arrays, as one series can only be
8596 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * associated to one X and one Y axis.
8597 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { *
8598 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * A third way to reference the axis programmatically is by `id`. Add an `id` in
8599 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * the axis configuration options, and get the axis by
8600 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * {@link Highcharts.Chart#get}.
8601 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { *
8602 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * Configuration options for the axes are given in options.xAxis and
8603 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * options.yAxis.
8604 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { *
8605 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @class Highcharts.Axis
8606 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @memberOf Highcharts
8607 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @param {Highcharts.Chart} chart - The Chart instance to apply the axis on.
8608 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @param {Object} options - Axis options
8609 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
8610 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {var Axis = function() {
8611 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {this.init.apply(this, arguments);
8612 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8613  
8614 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/** @lends Highcharts.Axis.prototype */ {
8615  
8616 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/**
8617 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * Default options for the X axis - the Y axis has extended defaults.
8618 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { *
8619 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @private
8620 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @type {Object}
8621 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
8622 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8623 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// allowDecimals: null,
8624 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // alternateGridColor: null,
8625 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // categories: [],
8626 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { dateTimeLabelFormats: {
8627 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'%H:%M:%S.%L',
8628 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'%H:%M:%S',
8629 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'%H:%M',
8630 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'%H:%M',
8631 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'%e. %b',
8632 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'%e. %b',
8633 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'%b \'%y',
8634 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'%Y'
8635 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8636 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {false,
8637 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// reversed: false,
8638  
8639 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8640 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {true,
8641 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// rotation: 0,
8642 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // align: 'center',
8643 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // step: null,
8644  
8645 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8646 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'#666666',
8647 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'default',
8648 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'11px'
8649 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8650  
8651 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8652 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {//y: undefined
8653 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { /*formatter: function () {
8654 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { return this.value;
8655 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { },*/
8656 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8657 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {//linkedTo: null,
8658 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //max: undefined,
8659 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //min: undefined,
8660 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { minPadding: 0.01,
8661 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8662 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {//minRange: null,
8663 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //minorTickInterval: null,
8664 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { minorTickLength: 2,
8665 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'outside', // inside or outside
8666 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //opposite: false,
8667 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //offset: 0,
8668 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //plotBands: [{
8669 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // events: {},
8670 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // zIndex: 1,
8671 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // labels: { align, x, verticalAlign, y, style, rotation, textAlign }
8672 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //}],
8673 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //plotLines: [{
8674 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // events: {}
8675 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // dashStyle: {}
8676 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // zIndex:
8677 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // labels: { align, x, verticalAlign, y, style, rotation, textAlign }
8678 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //}],
8679 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //reversed: false,
8680 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // showFirstLabel: true,
8681 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // showLastLabel: true,
8682 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { startOfWeek: 1,
8683 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {false,
8684 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {//tickInterval: null,
8685 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { tickLength: 10,
8686 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'between', // on or between
8687 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { tickPixelInterval: 100,
8688 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'outside',
8689 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8690 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {//text: null,
8691 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { align: 'middle', // low, middle or high
8692 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //margin: 0 for horizontal, 10 for vertical axes,
8693 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // reserveSpace: true,
8694 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //rotation: 0,
8695 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //side: 'outside',
8696  
8697 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8698 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'#666666'
8699 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8700  
8701 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {//x: 0,
8702 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //y: 0
8703 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { },
8704 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'linear', // linear, logarithmic or datetime
8705 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //visible: true
8706  
8707 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'#f2f2f2',
8708 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// minorGridLineDashStyle: null,
8709 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { minorGridLineWidth: 1,
8710 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'#999999',
8711 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {//minorTickWidth: 0,
8712 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { lineColor: '#ccd6eb',
8713 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8714 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'#e6e6e6',
8715 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// gridLineDashStyle: 'solid',
8716 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // gridLineWidth: 0,
8717 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { tickColor: '#ccd6eb'
8718 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// tickWidth: 1
8719  
8720 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8721  
8722 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/**
8723 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * This options set extends the defaultOptions for Y axes.
8724 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { *
8725 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @private
8726 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @type {Object}
8727 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
8728 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8729 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {true,
8730 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8731 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {true,
8732 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8733 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8734 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8735 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8736 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8737 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {true,
8738 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8739 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8740 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'Values'
8741 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8742 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8743 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {false,
8744 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {//align: dynamic,
8745 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //y: dynamic,
8746 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //x: dynamic,
8747 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //verticalAlign: dynamic,
8748 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //textAlign: dynamic,
8749 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //rotation: 0,
8750 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { formatter: function() {
8751 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {return H.numberFormat(this.total, -1);
8752 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8753  
8754 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8755 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'11px',
8756 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'bold',
8757 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'#000000',
8758 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'1px contrast'
8759 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8760  
8761 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8762  
8763 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8764 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8765 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// tickWidth: 0
8766  
8767 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8768  
8769 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/**
8770 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * These options extend the defaultOptions for left axes.
8771 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { *
8772 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @private
8773 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @type {Object}
8774 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
8775 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8776 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8777 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8778 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8779 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8780 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8781 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8782 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8783  
8784 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/**
8785 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * These options extend the defaultOptions for right axes.
8786 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { *
8787 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @private
8788 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @type {Object}
8789 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
8790 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8791 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8792 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8793 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8794 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8795 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8796 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8797 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8798  
8799 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/**
8800 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * These options extend the defaultOptions for bottom axes.
8801 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { *
8802 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @private
8803 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @type {Object}
8804 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
8805 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8806 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8807 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8808 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8809 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// overflow: undefined,
8810 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // staggerLines: null
8811 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { },
8812 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8813 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8814 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8815 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8816 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/**
8817 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * These options extend the defaultOptions for top axes.
8818 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { *
8819 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @private
8820 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @type {Object}
8821 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
8822 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8823 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8824 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8825 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8826 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// overflow: undefined
8827 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // staggerLines: null
8828 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { },
8829 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8830 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8831 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8832 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8833  
8834 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/**
8835 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * Initialize the axis
8836 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
8837 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {function(chart, userOptions) {
8838  
8839  
8840 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {var isXAxis = userOptions.isX,
8841 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {this;
8842  
8843 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8844  
8845 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// Flag, is the axis horizontal
8846 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.horiz = chart.inverted && !axis.isZAxis ? !isXAxis : isXAxis;
8847  
8848 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// Flag, isXAxis
8849 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.isXAxis = isXAxis;
8850 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'xAxis' : 'yAxis');
8851  
8852 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// needed in setOptions
8853 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.side = userOptions.side || (axis.horiz ?
8854 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// top : bottom
8855 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { (axis.opposite ? 1 : 3)); // right : left
8856  
8857 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8858  
8859  
8860 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {var options = this.options,
8861 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8862 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'datetime';
8863  
8864 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8865 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// can be overwritten by dynamic format
8866  
8867  
8868 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// Flag, stagger lines or not
8869 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.userOptions = userOptions;
8870  
8871 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {//axis.axisTitleMargin = undefined,// = options.title.margin,
8872 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.minPixelPadding = 0;
8873  
8874 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8875 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {false;
8876 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {false;
8877  
8878 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// Initial categories
8879 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.hasNames = type === 'category' || options.categories === true;
8880 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8881 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// Preserve on update (#3830)
8882  
8883 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// Elements
8884 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //axis.axisGroup = undefined;
8885 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //axis.gridGroup = undefined;
8886 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //axis.axisTitle = undefined;
8887 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //axis.axisLine = undefined;
8888  
8889 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// Placeholder for plotlines and plotbands groups
8890 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.plotLinesAndBandsGroups = {};
8891  
8892 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// Shorthand types
8893 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.isLog = type === 'logarithmic';
8894 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8895 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8896  
8897 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// Flag, if axis is linked to another axis
8898 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.isLinked = defined(options.linkedTo);
8899 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// Linked axis.
8900 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //axis.linkedParent = undefined;
8901  
8902 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// Major ticks
8903 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.ticks = {};
8904 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8905 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// Minor ticks
8906 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.minorTicks = {};
8907  
8908 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// List of plotLines/Bands
8909 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.plotLinesAndBands = [];
8910  
8911 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// Alternate bands
8912 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.alternateBands = {};
8913  
8914 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// Axis metrics
8915 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //axis.left = undefined;
8916 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //axis.top = undefined;
8917 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //axis.width = undefined;
8918 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //axis.height = undefined;
8919 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //axis.bottom = undefined;
8920 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //axis.right = undefined;
8921 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //axis.transA = undefined;
8922 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //axis.transB = undefined;
8923 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //axis.oldTransA = undefined;
8924 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.len = 0;
8925 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {//axis.oldMin = undefined;
8926 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //axis.oldMax = undefined;
8927 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //axis.oldUserMin = undefined;
8928 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //axis.oldUserMax = undefined;
8929 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //axis.oldAxisLength = undefined;
8930 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.minRange = axis.userMinRange = options.minRange || options.maxZoom;
8931 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8932 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8933  
8934  
8935 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// Dictionary for stacks
8936 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.stacks = {};
8937 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8938 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8939  
8940 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// Min and max in the data
8941 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //axis.dataMin = undefined,
8942 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //axis.dataMax = undefined,
8943  
8944 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// The axis range
8945 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.max = null;
8946 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {null;
8947  
8948 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// User set min and max
8949 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //axis.userMin = undefined,
8950 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { //axis.userMax = undefined,
8951  
8952 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// Crosshair options
8953 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.crosshair = pick(
8954 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8955 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8956 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {false
8957 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8958  
8959 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {var events = axis.options.events;
8960  
8961 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// Register. Don't add it again on Axis.update().
8962 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (inArray(axis, chart.axes) === -1) { //
8963 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (isXAxis) { // #2713
8964 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { chart.axes.splice(chart.xAxis.length, 0, axis);
8965 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {else {
8966 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8967 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8968  
8969 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8970 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8971  
8972 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// populated by Series
8973  
8974 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// inverted charts have reversed xAxes as default
8975 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (chart.inverted && !axis.isZAxis && isXAxis && axis.reversed === undefined) {
8976 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {true;
8977 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8978  
8979 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// register event listeners
8980 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { objectEach(events, function(event, eventType) {
8981 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8982 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8983  
8984 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// extend logarithmic axis
8985 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.lin2log = options.linearToLogConverter || axis.lin2log;
8986 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {if (axis.isLog) {
8987 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8988 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8989 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8990 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
8991  
8992 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/**
8993 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * Merge and set options
8994 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
8995 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {function(userOptions) {
8996 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {this.options = merge(
8997 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {this.defaultOptions,
8998 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {this.coll === 'yAxis' && this.defaultYAxisOptions, [
8999 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {this.defaultTopAxisOptions,
9000 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {this.defaultRightAxisOptions,
9001 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {this.defaultBottomAxisOptions,
9002 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {this.defaultLeftAxisOptions
9003 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {this.side],
9004 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9005 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {this.coll], // if set in setOptions (#1053)
9006 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { userOptions
9007 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9008 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9009 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9010  
9011 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/**
9012 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * The default label formatter. The context is a special config object for
9013 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * the label. In apps, use the {@link
9014 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * https://api.highcharts.com/highcharts/xAxis.labels.formatter|
9015 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * labels.formatter} instead except when a modification is needed.
9016 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { *
9017 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @private
9018 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
9019 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {function() {
9020 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {var axis = this.axis,
9021 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {this.value,
9022 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9023 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {this.dateTimeLabelFormat,
9024 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9025 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9026 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9027 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9028 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9029 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9030 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9031  
9032 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// make sure the same symbol is added for all labels on a linear
9033 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // axis
9034 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { numericSymbolDetector = axis.isLog ?
9035 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {Math.abs(value) :
9036 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9037  
9038 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {if (formatOption) {
9039 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {this);
9040  
9041 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {else if (categories) {
9042 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9043  
9044 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {else if (dateTimeLabelFormat) { // datetime axis
9045 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { ret = H.dateFormat(dateTimeLabelFormat, value);
9046  
9047 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {else if (i && numericSymbolDetector >= 1000) {
9048 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// Decide whether we should add a numeric symbol like k (thousands)
9049 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // or M (millions). If we are to enable this in tooltip or other
9050 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // places as well, we can move this logic to the numberFormatter and
9051 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // enable it by a parameter.
9052 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { while (i-- && ret === undefined) {
9053 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {Math.pow(numSymMagnitude, i + 1);
9054 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {if (
9055 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9056 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9057 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {null &&
9058 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9059 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// #5480
9060 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { ret = H.numberFormat(value / multi, -1) + numericSymbols[i];
9061 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
9062 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
9063 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
9064  
9065 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (ret === undefined) {
9066 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (Math.abs(value) >= 10000) { // add thousands separators
9067 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { ret = H.numberFormat(value, -1);
9068 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { } else { // small numbers
9069 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { ret = H.numberFormat(value, -1, undefined, ''); // #2466
9070 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
9071 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
9072  
9073 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { return ret;
9074 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { },
9075  
9076 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { /**
9077 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {for the series of each axis
9078 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/
9079 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { getSeriesExtremes: function() {
9080 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { var axis = this,
9081 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { chart = axis.chart;
9082 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.hasVisibleSeries = false;
9083  
9084 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // Reset properties in case we're redrawing (#3353)
9085 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.dataMin = axis.dataMax = axis.threshold = null;
9086 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.softThreshold = !axis.isXAxis;
9087  
9088 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (axis.buildStacks) {
9089 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.buildStacks();
9090 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
9091  
9092 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // loop through this axis' series
9093 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { each(axis.series, function(series) {
9094  
9095 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (series.visible || !chart.options.chart.ignoreHiddenSeries) {
9096  
9097 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { var seriesOptions = series.options,
9098 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { xData,
9099 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { threshold = seriesOptions.threshold,
9100 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { seriesDataMin,
9101 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { seriesDataMax;
9102  
9103 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.hasVisibleSeries = true;
9104  
9105 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // Validate threshold in logarithmic axes
9106 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (axis.positiveValuesOnly && threshold <= 0) {
9107 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {<= 0) { threshold = null;
9108 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {<= 0) { }
9109  
9110 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {<= 0) { // Get dataMin and dataMax for X axes
9111 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (axis.isXAxis) {
9112 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { xData = series.xData;
9113 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (xData.length) {
9114 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // If xData contains values which is not numbers, then
9115 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // filter them out. To prevent performance hit, we only
9116 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // do this after we have already found seriesDataMin
9117 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // because in most cases all data is valid. #5234.
9118 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { seriesDataMin = arrayMin(xData);
9119 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (!isNumber(seriesDataMin) &&
9120 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { !(seriesDataMin instanceof Date) // #5010
9121 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { ) {
9122 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { xData = grep(xData, function(x) {
9123 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { return isNumber(x);
9124 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { });
9125 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { seriesDataMin = arrayMin(xData); // Do it again with valid data
9126 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
9127  
9128 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.dataMin = Math.min(
9129 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { pick(axis.dataMin, xData[0]),
9130 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { seriesDataMin
9131 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { );
9132 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.dataMax = Math.max(
9133 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { pick(axis.dataMax, xData[0]),
9134 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { arrayMax(xData)
9135 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { );
9136  
9137 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
9138  
9139 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // Get dataMin and dataMax for Y axes, as well as handle
9140 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // stacking and processed data
9141 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { } else {
9142  
9143 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // Get this particular series extremes
9144 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { series.getExtremes();
9145 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { seriesDataMax = series.dataMax;
9146 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { seriesDataMin = series.dataMin;
9147  
9148 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // Get the dataMin and dataMax so far. If percentage is
9149 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // used, the min and max are always 0 and 100. If
9150 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // seriesDataMin and seriesDataMax is null, then series
9151 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // doesn't have active y data, we continue with nulls
9152 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (defined(seriesDataMin) && defined(seriesDataMax)) {
9153 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.dataMin = Math.min(
9154 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { pick(axis.dataMin, seriesDataMin),
9155 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { seriesDataMin
9156 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { );
9157 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.dataMax = Math.max(
9158 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { pick(axis.dataMax, seriesDataMax),
9159 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { seriesDataMax
9160 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { );
9161 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
9162  
9163 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // Adjust to threshold
9164 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (defined(threshold)) {
9165 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.threshold = threshold;
9166 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
9167 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // If any series has a hard threshold, it takes precedence
9168 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (!seriesOptions.softThreshold ||
9169 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.positiveValuesOnly
9170 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { ) {
9171 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.softThreshold = false;
9172 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
9173 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
9174 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
9175 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { });
9176 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { },
9177  
9178 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { /**
9179 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9180 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9181 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/
9182 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { translate: function(val, backwards, cvsCoord, old, handleLog, pointPlacement) {
9183 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { var axis = this.linkedParent || this, // #1417
9184 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { sign = 1,
9185 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { cvsOffset = 0,
9186 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { localA = old ? axis.oldTransA : axis.transA,
9187 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { localMin = old ? axis.oldMin : axis.min,
9188 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { returnValue,
9189 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { minPixelPadding = axis.minPixelPadding,
9190 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { doPostTranslate = (axis.isOrdinal || axis.isBroken || (axis.isLog && handleLog)) && axis.lin2val;
9191  
9192 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (!localA) {
9193 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { localA = axis.transA;
9194 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
9195  
9196 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // In vertical axes, the canvas coordinates start from 0 at the top like in
9197 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // SVG.
9198 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (cvsCoord) {
9199 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { sign *= -1; // canvas coordinates inverts the value
9200 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { cvsOffset = axis.len;
9201 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
9202  
9203 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // Handle reversed axis
9204 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (axis.reversed) {
9205 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { sign *= -1;
9206 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { cvsOffset -= sign * (axis.sector || axis.len);
9207 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
9208  
9209 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // From pixels to value
9210 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (backwards) { // reverse translation
9211  
9212 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { val = val * sign + cvsOffset;
9213 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { val -= minPixelPadding;
9214 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { returnValue = val / localA + localMin; // from chart pixel to value
9215 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (doPostTranslate) { // log and ordinal axes
9216 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { returnValue = axis.lin2val(returnValue);
9217 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9218  
9219 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// From value to pixels
9220 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { } else {
9221 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {if (doPostTranslate) { // log and ordinal axes
9222 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { val = axis.val2lin(val);
9223 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9224 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9225 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9226 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9227 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9228  
9229 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {return returnValue;
9230 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9231  
9232 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/**
9233 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * Translate a value in terms of axis units into pixels within the chart.
9234 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { *
9235 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @param {Number} value
9236 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * A value in terms of axis units.
9237 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @param {Boolean} paneCoordinates
9238 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * Whether to return the pixel coordinate relative to the chart or
9239 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * just the axis/pane itself.
9240 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @return {Number} Pixel position of the value on the chart or axis.
9241 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
9242 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {function(value, paneCoordinates) {
9243 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {return this.translate(value, false, !this.horiz, null, true) +
9244 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {this.pos);
9245 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9246  
9247 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/**
9248 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * Translate a pixel position along the axis to a value in terms of axis
9249 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * units.
9250 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @param {Number} pixel
9251 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * The pixel value coordinate.
9252 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @param {Boolean} paneCoordiantes
9253 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * Whether the input pixel is relative to the chart or just the
9254 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * axis/pane itself.
9255 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @return {Number} The axis value.
9256 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
9257 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {function(pixel, paneCoordinates) {
9258 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {return this.translate(
9259 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {this.pos),
9260 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {true, !this.horiz,
9261 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {null,
9262 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {true
9263 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9264 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9265  
9266 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/**
9267 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * Create the path for a plot line that goes from the given value on
9268 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * this axis, across the plot to the opposite side
9269 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @param {Number} value
9270 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @param {Number} lineWidth Used for calculation crisp line
9271 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @param {Number] old Use old coordinates (for resizing and rescaling)
9272 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
9273 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {function(value, lineWidth, old, force, translatedValue) {
9274 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {var axis = this,
9275 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9276 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9277 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9278 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9279 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9280 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9281 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9282 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9283 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9284 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9285 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9286 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/**
9287 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * Check if x is between a and b. If not, either move to a/b or skip,
9288 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * depending on the force parameter.
9289 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
9290 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {function(x, a, b) {
9291 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {if (x < a || x > b) {
9292 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {if (force) {
9293 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {Math.min(Math.max(a, x), b);
9294 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {else {
9295 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {true;
9296 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9297 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9298 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {return x;
9299 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9300  
9301 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {null, null, old));
9302 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {Math.round(translatedValue + transB);
9303 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {Math.round(cHeight - translatedValue - transB);
9304 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {if (!isNumber(translatedValue)) { // no min or max
9305 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { skip = true;
9306  
9307 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {else if (axis.horiz) {
9308 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9309 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9310 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9311 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {else {
9312 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9313 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9314 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9315 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9316 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {return skip && !force ?
9317 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {null :
9318 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {'M', x1, y1, 'L', x2, y2], lineWidth || 1);
9319 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9320  
9321 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/**
9322 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * Internal function to et the tick positions of a linear axis to round
9323 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * values like whole tens or every five.
9324 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { *
9325 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @param {Number} tickInterval
9326 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * The normalized tick interval
9327 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @param {Number} min
9328 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * Axis minimum.
9329 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @param {Number} max
9330 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * Axis maximum.
9331 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { *
9332 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @return {Array.<Number>}
9333 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * An array of numbers where ticks should be placed.
9334 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
9335 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {function(tickInterval, min, max) {
9336 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {var pos,
9337 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9338 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {Math.floor(min / tickInterval) * tickInterval),
9339 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { roundedMax = correctFloat(Math.ceil(max / tickInterval) * tickInterval),
9340 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9341  
9342 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// For single points, add a tick regardless of the relative position
9343 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // (#2662, #6274)
9344 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (this.single) {
9345 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {return [min];
9346 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9347  
9348 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// Populate the intermediate values
9349 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { pos = roundedMin;
9350 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {while (pos <= roundedMax) {
9351  
9352 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// Place the tick on the rounded value
9353 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { tickPositions.push(pos);
9354  
9355 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// Always add the raw tickInterval, not the corrected one.
9356 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { pos = correctFloat(pos + tickInterval);
9357  
9358 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// If the interval is not big enough in the current min - max range to actually increase
9359 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // the loop variable, we need to break out to prevent endless loop. Issue #619
9360 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (pos === lastPos) {
9361 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {break;
9362 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9363  
9364 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// Record the last value
9365 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { lastPos = pos;
9366 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9367 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {return tickPositions;
9368 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9369  
9370 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {/**
9371 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * Return the minor tick positions. For logarithmic axes, reuse the same logic
9372 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * as for major ticks.
9373 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
9374 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {function() {
9375 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {var axis = this,
9376 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9377 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9378 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9379 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9380 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9381 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {
9382 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// #1498
9383 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { max = axis.max + pointRangePadding, // #1498
9384 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { range = max - min;
9385  
9386 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {// If minor ticks get too dense, they are hard to read, and may cause long running script. So we don't draw them.
9387 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (range && range / minorTickInterval < axis.len / 3) { // #3875
9388  
9389 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (axis.isLog) {
9390 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // For each interval in the major ticks, compute the minor ticks
9391 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // separately.
9392 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { each(this.paddedTicks, function(pos, i, paddedTicks) {
9393 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (i) {
9394 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { minorTickPositions.push.apply(
9395 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { minorTickPositions,
9396 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.getLogTickPositions(
9397 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { minorTickInterval,
9398 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { paddedTicks[i - 1],
9399 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { paddedTicks[i],
9400 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { true
9401 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { )
9402 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { );
9403 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
9404 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { });
9405  
9406 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { } else if (axis.isDatetimeAxis && options.minorTickInterval === 'auto') { // #1314
9407 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { minorTickPositions = minorTickPositions.concat(
9408 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.getTimeTicks(
9409 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.normalizeTimeTickInterval(minorTickInterval),
9410 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { min,
9411 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { max,
9412 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { options.startOfWeek
9413 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { )
9414 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { );
9415 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { } else {
9416 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { for (
9417 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { pos = min + (tickPositions[0] - min) % minorTickInterval; pos <= max; pos += minorTickInterval
9418 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { ) {
9419 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // Very, very, tight grid lines (#5771)
9420 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (pos === minorTickPositions[0]) {
9421 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { break;
9422 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
9423 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { minorTickPositions.push(pos);
9424 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
9425 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
9426 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
9427  
9428 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (minorTickPositions.length !== 0) {
9429 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.trimTicks(minorTickPositions); // #3652 #3743 #1498 #6330
9430 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
9431 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { return minorTickPositions;
9432 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { },
9433  
9434 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { /**
9435 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * Adjust the min and max for the minimum range. Keep in mind that the series data is
9436 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * not yet processed, so we don't have information on data cropping and grouping, or
9437 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * updated axis.pointRange or series.pointRange. The data can't be processed until
9438 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * we have finally established min and max.
9439 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { *
9440 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { * @private
9441 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { */
9442 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { adjustForMinRange: function() {
9443 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { var axis = this,
9444 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { options = axis.options,
9445 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { min = axis.min,
9446 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { max = axis.max,
9447 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { zoomOffset,
9448 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { spaceAvailable,
9449 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { closestDataRange,
9450 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { i,
9451 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { distance,
9452 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { xData,
9453 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { loopLength,
9454 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { minArgs,
9455 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { maxArgs,
9456 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { minRange;
9457  
9458 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // Set the automatic minimum range based on the closest point distance
9459 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (axis.isXAxis && axis.minRange === undefined && !axis.isLog) {
9460  
9461 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (defined(options.min) || defined(options.max)) {
9462 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.minRange = null; // don't do this again
9463  
9464 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { } else {
9465  
9466 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // Find the closest distance between raw data points, as opposed to
9467 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // closestPointRange that applies to processed points (cropped and grouped)
9468 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { each(axis.series, function(series) {
9469 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { xData = series.xData;
9470 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { loopLength = series.xIncrement ? 1 : xData.length - 1;
9471 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { for (i = loopLength; i > 0; i--) {
9472 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { distance = xData[i] - xData[i - 1];
9473 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (closestDataRange === undefined || distance < closestDataRange) {
9474 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { closestDataRange = distance;
9475 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
9476 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
9477 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { });
9478 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { axis.minRange = Math.min(closestDataRange * 5, axis.dataMax - axis.dataMin);
9479 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
9480 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
9481  
9482 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // if minRange is exceeded, adjust
9483 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (max - min < axis.minRange) {
9484  
9485 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { spaceAvailable = axis.dataMax - axis.dataMin >= axis.minRange;
9486 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { minRange = axis.minRange;
9487 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { zoomOffset = (minRange - max + min) / 2;
9488  
9489 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // if min and max options have been set, don't go beyond it
9490 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { minArgs = [min - zoomOffset, pick(options.min, min - zoomOffset)];
9491 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (spaceAvailable) { // if space is available, stay within the data range
9492 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { minArgs[2] = axis.isLog ? axis.log2lin(axis.dataMin) : axis.dataMin;
9493 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
9494 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { min = arrayMax(minArgs);
9495  
9496 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { maxArgs = [min + minRange, pick(options.max, min + minRange)];
9497 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (spaceAvailable) { // if space is availabe, stay within the data range
9498 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { maxArgs[2] = axis.isLog ? axis.log2lin(axis.dataMax) : axis.dataMax;
9499 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { }
9500  
9501 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { max = arrayMin(maxArgs);
9502  
9503 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { // now if the max is adjusted, adjust the min back
9504 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) { if (max - min < minRange) {
9505 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { minArgs[0] = max - minRange;
9506 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { minArgs[1] = pick(options.min, max - minRange);
9507 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { min = arrayMax(minArgs);
9508 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9509 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9510  
9511 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // Record modified extremes
9512 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.min = min;
9513 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.max = max;
9514 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { },
9515  
9516 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { /**
9517 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { * Find the closestPointRange across all series.
9518 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { *
9519 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { * @private
9520 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { */
9521 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { getClosest: function() {
9522 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { var ret;
9523  
9524 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (this.categories) {
9525 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { ret = 1;
9526 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { } else {
9527 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { each(this.series, function(series) {
9528 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { var seriesClosest = series.closestPointRange,
9529 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { visible = series.visible ||
9530 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { !series.chart.options.chart.ignoreHiddenSeries;
9531  
9532 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (!series.noSharedTooltip &&
9533 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { defined(seriesClosest) &&
9534 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { visible
9535 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { ) {
9536 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { ret = defined(ret) ?
9537 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { Math.min(ret, seriesClosest) :
9538 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { seriesClosest;
9539 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9540 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { });
9541 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9542 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { return ret;
9543 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { },
9544  
9545 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { /**
9546 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { * When a point name is given and no x, search for the name in the existing categories,
9547 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { * or if categories aren't provided, search names or create a new category (#2522).
9548 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { */
9549 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { nameToX: function(point) {
9550 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { var explicitCategories = isArray(this.categories),
9551 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { names = explicitCategories ? this.categories : this.names,
9552 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { nameX = point.options.x,
9553 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { x;
9554  
9555 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { point.series.requireSorting = false;
9556  
9557 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (!defined(nameX)) {
9558 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { nameX = this.options.uniqueNames === false ?
9559 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { point.series.autoIncrement() :
9560 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { inArray(point.name, names);
9561 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9562 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (nameX === -1) { // The name is not found in currenct categories
9563 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (!explicitCategories) {
9564 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { x = names.length;
9565 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9566 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { } else {
9567 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { x = nameX;
9568 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9569  
9570 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // Write the last point's name to the names array
9571 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (x !== undefined) {
9572 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.names[x] = point.name;
9573 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9574  
9575 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { return x;
9576 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { },
9577  
9578 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { /**
9579 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { * When changes have been done to series data, update the axis.names.
9580 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { */
9581 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { updateNames: function() {
9582 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { var axis = this;
9583  
9584 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (this.names.length > 0) {
9585 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.names.length = 0;
9586 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.minRange = this.userMinRange; // Reset
9587 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { each(this.series || [], function(series) {
9588  
9589 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // Reset incrementer (#5928)
9590 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { series.xIncrement = null;
9591  
9592 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // When adding a series, points are not yet generated
9593 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (!series.points || series.isDirtyData) {
9594 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { series.processData();
9595 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { series.generatePoints();
9596 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9597  
9598 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { each(series.points, function(point, i) {
9599 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { var x;
9600 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (point.options) {
9601 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { x = axis.nameToX(point);
9602 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (x !== undefined && x !== point.x) {
9603 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { point.x = x;
9604 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { series.xData[i] = x;
9605 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9606 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9607 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { });
9608 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { });
9609 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9610 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { },
9611  
9612 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { /**
9613 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { * Update translation information
9614 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { */
9615 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { setAxisTranslation: function(saveOld) {
9616 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { var axis = this,
9617 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { range = axis.max - axis.min,
9618 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { pointRange = axis.axisPointRange || 0,
9619 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { closestPointRange,
9620 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { minPointOffset = 0,
9621 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { pointRangePadding = 0,
9622 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { linkedParent = axis.linkedParent,
9623 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { ordinalCorrection,
9624 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { hasCategories = !!axis.categories,
9625 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { transA = axis.transA,
9626 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { isXAxis = axis.isXAxis;
9627  
9628 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // Adjust translation for padding. Y axis with categories need to go through the same (#1784).
9629 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (isXAxis || hasCategories || pointRange) {
9630  
9631 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // Get the closest points
9632 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { closestPointRange = axis.getClosest();
9633  
9634 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (linkedParent) {
9635 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { minPointOffset = linkedParent.minPointOffset;
9636 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { pointRangePadding = linkedParent.pointRangePadding;
9637 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { } else {
9638 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { each(axis.series, function(series) {
9639 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { var seriesPointRange = hasCategories ?
9640 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { 1 :
9641 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { (isXAxis ?
9642 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { pick(series.options.pointRange, closestPointRange, 0) :
9643 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { (axis.axisPointRange || 0)), // #2806
9644 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { pointPlacement = series.options.pointPlacement;
9645  
9646 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { pointRange = Math.max(pointRange, seriesPointRange);
9647  
9648 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (!axis.single) {
9649 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // minPointOffset is the value padding to the left of the axis in order to make
9650 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // room for points with a pointRange, typically columns. When the pointPlacement option
9651 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // is 'between' or 'on', this padding does not apply.
9652 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { minPointOffset = Math.max(
9653 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { minPointOffset,
9654 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { isString(pointPlacement) ? 0 : seriesPointRange / 2
9655 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { );
9656  
9657 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // Determine the total padding needed to the length of the axis to make room for the
9658 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // pointRange. If the series' pointPlacement is 'on', no padding is added.
9659 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { pointRangePadding = Math.max(
9660 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { pointRangePadding,
9661 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { pointPlacement === 'on' ? 0 : seriesPointRange
9662 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { );
9663 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9664 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { });
9665 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9666  
9667 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // Record minPointOffset and pointRangePadding
9668 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { ordinalCorrection = axis.ordinalSlope && closestPointRange ? axis.ordinalSlope / closestPointRange : 1; // #988, #1853
9669 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.minPointOffset = minPointOffset = minPointOffset * ordinalCorrection;
9670 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.pointRangePadding = pointRangePadding = pointRangePadding * ordinalCorrection;
9671  
9672 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // pointRange means the width reserved for each point, like in a column chart
9673 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.pointRange = Math.min(pointRange, range);
9674  
9675 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // closestPointRange means the closest distance between points. In columns
9676 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // it is mostly equal to pointRange, but in lines pointRange is 0 while closestPointRange
9677 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // is some other value
9678 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (isXAxis) {
9679 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.closestPointRange = closestPointRange;
9680 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9681 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9682  
9683 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // Secondary values
9684 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (saveOld) {
9685 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.oldTransA = transA;
9686 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9687 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.translationSlope = axis.transA = transA =
9688 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.options.staticScale ||
9689 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.len / ((range + pointRangePadding) || 1);
9690 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.transB = axis.horiz ? axis.left : axis.bottom; // translation addend
9691 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.minPixelPadding = transA * minPointOffset;
9692 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { },
9693  
9694 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { minFromRange: function() {
9695 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { return this.max - this.range;
9696 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { },
9697  
9698 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { /**
9699 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { * Set the tick positions to round values and optionally extend the extremes
9700 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { * to the nearest tick
9701 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { */
9702 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { setTickInterval: function(secondPass) {
9703 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { var axis = this,
9704 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { chart = axis.chart,
9705 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { options = axis.options,
9706 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { isLog = axis.isLog,
9707 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { log2lin = axis.log2lin,
9708 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { isDatetimeAxis = axis.isDatetimeAxis,
9709 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { isXAxis = axis.isXAxis,
9710 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { isLinked = axis.isLinked,
9711 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { maxPadding = options.maxPadding,
9712 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { minPadding = options.minPadding,
9713 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { length,
9714 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { linkedParentExtremes,
9715 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { tickIntervalOption = options.tickInterval,
9716 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { minTickInterval,
9717 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { tickPixelIntervalOption = options.tickPixelInterval,
9718 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { categories = axis.categories,
9719 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { threshold = axis.threshold,
9720 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { softThreshold = axis.softThreshold,
9721 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { thresholdMin,
9722 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { thresholdMax,
9723 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { hardMin,
9724 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { hardMax;
9725  
9726 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (!isDatetimeAxis && !categories && !isLinked) {
9727 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.getTickAmount();
9728 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9729  
9730 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // Min or max set either by zooming/setExtremes or initial options
9731 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { hardMin = pick(axis.userMin, options.min);
9732 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { hardMax = pick(axis.userMax, options.max);
9733  
9734 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // Linked axis gets the extremes from the parent axis
9735 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (isLinked) {
9736 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.linkedParent = chart[axis.coll][options.linkedTo];
9737 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { linkedParentExtremes = axis.linkedParent.getExtremes();
9738 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.min = pick(linkedParentExtremes.min, linkedParentExtremes.dataMin);
9739 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.max = pick(linkedParentExtremes.max, linkedParentExtremes.dataMax);
9740 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (options.type !== axis.linkedParent.options.type) {
9741 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { H.error(11, 1); // Can't link axes of different type
9742 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9743  
9744 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // Initial min and max from the extreme data values
9745 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { } else {
9746  
9747 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // Adjust to hard threshold
9748 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (!softThreshold && defined(threshold)) {
9749 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (axis.dataMin >= threshold) {
9750 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { thresholdMin = threshold;
9751 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { minPadding = 0;
9752 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { } else if (axis.dataMax <= threshold) {
9753 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { thresholdMax = threshold;
9754 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { maxPadding = 0;
9755 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9756 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9757  
9758 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.min = pick(hardMin, thresholdMin, axis.dataMin);
9759 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.max = pick(hardMax, thresholdMax, axis.dataMax);
9760  
9761 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9762  
9763 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (isLog) {
9764 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (
9765 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.positiveValuesOnly &&
9766 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { !secondPass &&
9767 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { Math.min(axis.min, pick(axis.dataMin, axis.min)) <= 0
9768 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { ) { // #978
9769 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { H.error(10, 1); // Can't plot negative values on log axis
9770 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9771 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // The correctFloat cures #934, float errors on full tens. But it
9772 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // was too aggressive for #4360 because of conversion back to lin,
9773 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // therefore use precision 15.
9774 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.min = correctFloat(log2lin(axis.min), 15);
9775 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.max = correctFloat(log2lin(axis.max), 15);
9776 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9777  
9778 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // handle zoomed range
9779 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (axis.range && defined(axis.max)) {
9780 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.userMin = axis.min = hardMin = Math.max(axis.min, axis.minFromRange()); // #618
9781 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.userMax = hardMax = axis.max;
9782  
9783 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.range = null; // don't use it when running setExtremes
9784 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9785  
9786 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // Hook for Highstock Scroller. Consider combining with beforePadding.
9787 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { fireEvent(axis, 'foundExtremes');
9788  
9789 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // Hook for adjusting this.min and this.max. Used by bubble series.
9790 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (axis.beforePadding) {
9791 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.beforePadding();
9792 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9793  
9794 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // adjust min and max for the minimum range
9795 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.adjustForMinRange();
9796  
9797 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // Pad the values to get clear of the chart's edges. To avoid tickInterval taking the padding
9798 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // into account, we do this after computing tick interval (#1337).
9799 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (!categories && !axis.axisPointRange && !axis.usePercentage && !isLinked && defined(axis.min) && defined(axis.max)) {
9800 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { length = axis.max - axis.min;
9801 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (length) {
9802 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (!defined(hardMin) && minPadding) {
9803 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.min -= length * minPadding;
9804 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9805 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (!defined(hardMax) && maxPadding) {
9806 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.max += length * maxPadding;
9807 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9808 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9809 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9810  
9811 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // Handle options for floor, ceiling, softMin and softMax (#6359)
9812 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (isNumber(options.softMin)) {
9813 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.min = Math.min(axis.min, options.softMin);
9814 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9815 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (isNumber(options.softMax)) {
9816 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.max = Math.max(axis.max, options.softMax);
9817 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9818 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (isNumber(options.floor)) {
9819 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.min = Math.max(axis.min, options.floor);
9820 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9821 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (isNumber(options.ceiling)) {
9822 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.max = Math.min(axis.max, options.ceiling);
9823 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9824  
9825  
9826 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // When the threshold is soft, adjust the extreme value only if
9827 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // the data extreme and the padded extreme land on either side of the threshold. For example,
9828 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // a series of [0, 1, 2, 3] would make the yAxis add a tick for -1 because of the
9829 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // default minPadding and startOnTick options. This is prevented by the softThreshold
9830 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // option.
9831 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (softThreshold && defined(axis.dataMin)) {
9832 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { threshold = threshold || 0;
9833 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (!defined(hardMin) && axis.min < threshold && axis.dataMin >= threshold) {
9834 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.min = threshold;
9835 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { } else if (!defined(hardMax) && axis.max > threshold && axis.dataMax <= threshold) {
9836 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.max = threshold;
9837 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9838 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9839  
9840  
9841 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // get tickInterval
9842 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (axis.min === axis.max || axis.min === undefined || axis.max === undefined) {
9843 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.tickInterval = 1;
9844 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { } else if (isLinked && !tickIntervalOption &&
9845 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { tickPixelIntervalOption === axis.linkedParent.options.tickPixelInterval) {
9846 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.tickInterval = tickIntervalOption = axis.linkedParent.tickInterval;
9847 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { } else {
9848 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.tickInterval = pick(
9849 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { tickIntervalOption,
9850 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.tickAmount ? ((axis.max - axis.min) / Math.max(this.tickAmount - 1, 1)) : undefined,
9851 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { categories ? // for categoried axis, 1 is default, for linear axis use tickPix
9852 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { 1 :
9853 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // don't let it be more than the data range
9854 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { (axis.max - axis.min) * tickPixelIntervalOption / Math.max(axis.len, tickPixelIntervalOption)
9855 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { );
9856 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9857  
9858 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // Now we're finished detecting min and max, crop and group series data. This
9859 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // is in turn needed in order to find tick positions in ordinal axes.
9860 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (isXAxis && !secondPass) {
9861 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { each(axis.series, function(series) {
9862 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { series.processData(axis.min !== axis.oldMin || axis.max !== axis.oldMax);
9863 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { });
9864 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9865  
9866 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // set the translation factor used in translate function
9867 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.setAxisTranslation(true);
9868  
9869 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // hook for ordinal axes and radial axes
9870 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (axis.beforeSetTickPositions) {
9871 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.beforeSetTickPositions();
9872 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9873  
9874 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // hook for extensions, used in Highstock ordinal axes
9875 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (axis.postProcessTickInterval) {
9876 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.tickInterval = axis.postProcessTickInterval(axis.tickInterval);
9877 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9878  
9879 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // In column-like charts, don't cramp in more ticks than there are points (#1943, #4184)
9880 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (axis.pointRange && !tickIntervalOption) {
9881 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.tickInterval = Math.max(axis.pointRange, axis.tickInterval);
9882 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9883  
9884 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // Before normalizing the tick interval, handle minimum tick interval. This applies only if tickInterval is not defined.
9885 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { minTickInterval = pick(options.minTickInterval, axis.isDatetimeAxis && axis.closestPointRange);
9886 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (!tickIntervalOption && axis.tickInterval < minTickInterval) {
9887 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.tickInterval = minTickInterval;
9888 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9889  
9890 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // for linear axes, get magnitude and normalize the interval
9891 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (!isDatetimeAxis && !isLog && !tickIntervalOption) {
9892 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.tickInterval = normalizeTickInterval(
9893 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.tickInterval,
9894 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { null,
9895 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { getMagnitude(axis.tickInterval),
9896 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // If the tick interval is between 0.5 and 5 and the axis max is in the order of
9897 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // thousands, chances are we are dealing with years. Don't allow decimals. #3363.
9898 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { pick(options.allowDecimals, !(axis.tickInterval > 0.5 && axis.tickInterval < 5 && axis.max > 1000 && axis.max < 9999)), !!this.tickAmount
9899 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { );
9900 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9901  
9902 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // Prevent ticks from getting so close that we can't draw the labels
9903 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (!this.tickAmount) {
9904 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { axis.tickInterval = axis.unsquish();
9905 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9906  
9907 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.setTickPositions();
9908 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { },
9909  
9910 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { /**
9911 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { * Now we have computed the normalized tickInterval, get the tick positions
9912 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { */
9913 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { setTickPositions: function() {
9914  
9915 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { var options = this.options,
9916 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { tickPositions,
9917 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { tickPositionsOption = options.tickPositions,
9918 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { tickPositioner = options.tickPositioner,
9919 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { startOnTick = options.startOnTick,
9920 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { endOnTick = options.endOnTick;
9921  
9922 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // Set the tickmarkOffset
9923 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.tickmarkOffset = (this.categories && options.tickmarkPlacement === 'between' &&
9924 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.tickInterval === 1) ? 0.5 : 0; // #3202
9925  
9926  
9927 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // get minorTickInterval
9928 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.minorTickInterval = options.minorTickInterval === 'auto' && this.tickInterval ?
9929 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.tickInterval / 5 : options.minorTickInterval;
9930  
9931 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // When there is only one point, or all points have the same value on
9932 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // this axis, then min and max are equal and tickPositions.length is 0
9933 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // or 1. In this case, add some padding in order to center the point,
9934 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // but leave it with one tick. #1337.
9935 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.single =
9936 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.min === this.max &&
9937 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { defined(this.min) &&
9938 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { !this.tickAmount &&
9939 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { (
9940 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // Data is on integer (#6563)
9941 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { parseInt(this.min, 10) === this.min ||
9942  
9943 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // Between integers and decimals are not allowed (#6274)
9944 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { options.allowDecimals !== false
9945 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { );
9946  
9947 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // Find the tick positions
9948 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.tickPositions = tickPositions = tickPositionsOption && tickPositionsOption.slice(); // Work on a copy (#1565)
9949 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (!tickPositions) {
9950  
9951 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (this.isDatetimeAxis) {
9952 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { tickPositions = this.getTimeTicks(
9953 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.normalizeTimeTickInterval(
9954 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.tickInterval,
9955 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { options.units
9956 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { ),
9957 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.min,
9958 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.max,
9959 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { options.startOfWeek,
9960 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.ordinalPositions,
9961 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.closestPointRange,
9962 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { true
9963 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { );
9964 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { } else if (this.isLog) {
9965 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { tickPositions = this.getLogTickPositions(
9966 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.tickInterval,
9967 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.min,
9968 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.max
9969 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { );
9970 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { } else {
9971 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { tickPositions = this.getLinearTickPositions(
9972 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.tickInterval,
9973 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.min,
9974 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.max
9975 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { );
9976 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9977  
9978 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // Too dense ticks, keep only the first and last (#4477)
9979 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (tickPositions.length > this.len) {
9980 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { tickPositions = [tickPositions[0], tickPositions.pop()];
9981 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9982  
9983 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.tickPositions = tickPositions;
9984  
9985 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // Run the tick positioner callback, that allows modifying auto tick positions.
9986 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (tickPositioner) {
9987 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { tickPositioner = tickPositioner.apply(this, [this.min, this.max]);
9988 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (tickPositioner) {
9989 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.tickPositions = tickPositions = tickPositioner;
9990 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9991 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9992  
9993 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
9994  
9995 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // Reset min/max or remove extremes based on start/end on tick
9996 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.paddedTicks = tickPositions.slice(0); // Used for logarithmic minor
9997 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.trimTicks(tickPositions, startOnTick, endOnTick);
9998 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (!this.isLinked) {
9999  
10000 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { // Substract half a unit (#2619, #2846, #2515, #3390)
10001 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (this.single) {
10002 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.min -= 0.5;
10003 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.max += 0.5;
10004 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
10005 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (!tickPositionsOption && !tickPositioner) {
10006 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.adjustTickAmount();
10007 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
10008 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
10009 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { },
10010  
10011 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { /**
10012 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { * Handle startOnTick and endOnTick by either adapting to padding min/max or rounded min/max
10013 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { */
10014 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { trimTicks: function(tickPositions, startOnTick, endOnTick) {
10015 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { var roundedMin = tickPositions[0],
10016 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { roundedMax = tickPositions[tickPositions.length - 1],
10017 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { minPointOffset = this.minPointOffset || 0;
10018  
10019 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (!this.isLinked) {
10020 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (startOnTick && roundedMin !== -Infinity) { // #6502
10021 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.min = roundedMin;
10022 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { } else {
10023 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { while (this.min - minPointOffset > tickPositions[0]) {
10024 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { tickPositions.shift();
10025 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
10026 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { }
10027  
10028 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { if (endOnTick) {
10029 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { this.max = roundedMax;
10030 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { } else {
10031 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) { while (this.max + minPointOffset < tickPositions[tickPositions.length - 1]) {
10032 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { tickPositions.pop();
10033 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { }
10034 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { }
10035  
10036 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { // If no tick are left, set one tick in the middle (#3195)
10037 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { if (tickPositions.length === 0 && defined(roundedMin)) {
10038 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { tickPositions.push((roundedMax + roundedMin) / 2);
10039 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { }
10040 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { }
10041 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { },
10042  
10043 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { /**
10044 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { * Check if there are multiple axes in the same pane.
10045 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { *
10046 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { * @private
10047 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { * @return {Boolean}
10048 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { * True if there are other axes.
10049 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { */
10050 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { alignToOthers: function() {
10051 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { var others = {}, // Whether there is another axis to pair with this one
10052 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { hasOther,
10053 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { options = this.options;
10054  
10055 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { if (
10056 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { // Only if alignTicks is true
10057 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { this.chart.options.chart.alignTicks !== false &&
10058 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { options.alignTicks !== false &&
10059  
10060 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { // Don't try to align ticks on a log axis, they are not evenly
10061 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { // spaced (#6021)
10062 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { !this.isLog
10063 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { ) {
10064 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { each(this.chart[this.coll], function(axis) {
10065 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { var otherOptions = axis.options,
10066 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { horiz = axis.horiz,
10067 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { key = [
10068 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { horiz ? otherOptions.left : otherOptions.top,
10069 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { otherOptions.width,
10070 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { otherOptions.height,
10071 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { otherOptions.pane
10072 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { ].join(',');
10073  
10074  
10075 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { if (axis.series.length) { // #4442
10076 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { if (others[key]) {
10077 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { hasOther = true; // #4201
10078 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { } else {
10079 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { others[key] = 1;
10080 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { }
10081 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { }
10082 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { });
10083 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { }
10084 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { return hasOther;
10085 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { },
10086  
10087 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { /**
10088 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { * Set the max ticks of either the x and y axis collection
10089 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { */
10090 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { getTickAmount: function() {
10091 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { var options = this.options,
10092 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { tickAmount = options.tickAmount,
10093 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { tickPixelInterval = options.tickPixelInterval;
10094  
10095 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { if (!defined(options.tickInterval) && this.len < tickPixelInterval && !this.isRadial &&
10096 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { !this.isLog && options.startOnTick && options.endOnTick) {
10097 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { tickAmount = 2;
10098 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { }
10099  
10100 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { if (!tickAmount && this.alignToOthers()) {
10101 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { // Add 1 because 4 tick intervals require 5 ticks (including first and last)
10102 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { tickAmount = Math.ceil(this.len / tickPixelInterval) + 1;
10103 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { }
10104  
10105 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { // For tick amounts of 2 and 3, compute five ticks and remove the intermediate ones. This
10106 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { // prevents the axis from adding ticks that are too far away from the data extremes.
10107 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) { if (tickAmount < 4) {
10108 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { this.finalTickAmt = tickAmount;
10109 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { tickAmount = 5;
10110 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { }
10111  
10112 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { this.tickAmount = tickAmount;
10113 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { },
10114  
10115 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { /**
10116 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { * When using multiple axes, adjust the number of ticks to match the highest
10117 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { * number of ticks in that group.
10118 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { *
10119 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { * @private
10120 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { */
10121 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { adjustTickAmount: function() {
10122 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { var tickInterval = this.tickInterval,
10123 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { tickPositions = this.tickPositions,
10124 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { tickAmount = this.tickAmount,
10125 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { finalTickAmt = this.finalTickAmt,
10126 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { currentTickAmount = tickPositions && tickPositions.length,
10127 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { i,
10128 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { len;
10129  
10130 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) { if (currentTickAmount < tickAmount) {
10131 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) { while (tickPositions.length < tickAmount) {
10132 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { tickPositions.push(correctFloat(
10133 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { tickPositions[tickPositions.length - 1] + tickInterval
10134 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { ));
10135 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
10136 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.transA *= (currentTickAmount - 1) / (tickAmount - 1);
10137 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.max = tickPositions[tickPositions.length - 1];
10138  
10139 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // We have too many ticks, run second pass to try to reduce ticks
10140 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { } else if (currentTickAmount > tickAmount) {
10141 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.tickInterval *= 2;
10142 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.setTickPositions();
10143 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
10144  
10145 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // The finalTickAmt property is set in getTickAmount
10146 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (defined(finalTickAmt)) {
10147 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { i = len = tickPositions.length;
10148 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { while (i--) {
10149 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (
10150 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { (finalTickAmt === 3 && i % 2 === 1) || // Remove every other tick
10151 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { (finalTickAmt <= 2 && i > 0 && i < len - 1) // Remove all but first and last
10152 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { ) {
10153 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { tickPositions.splice(i, 1);
10154 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
10155 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
10156 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.finalTickAmt = undefined;
10157 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
10158 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { },
10159  
10160 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { /**
10161 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * Set the scale based on data min and max, user set min and max or options
10162 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { *
10163 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { */
10164 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { setScale: function() {
10165 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { var axis = this,
10166 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { isDirtyData,
10167 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { isDirtyAxisLength;
10168  
10169 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { axis.oldMin = axis.min;
10170 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { axis.oldMax = axis.max;
10171 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { axis.oldAxisLength = axis.len;
10172  
10173 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // set the new axisLength
10174 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { axis.setAxisSize();
10175 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { //axisLength = horiz ? axisWidth : axisHeight;
10176 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { isDirtyAxisLength = axis.len !== axis.oldAxisLength;
10177  
10178 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // is there new data?
10179 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { each(axis.series, function(series) {
10180 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (series.isDirtyData || series.isDirty ||
10181 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { series.xAxis.isDirty) { // when x axis is dirty, we need new data extremes for y as well
10182 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { isDirtyData = true;
10183 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
10184 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { });
10185  
10186 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // do we really need to go through all this?
10187 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (isDirtyAxisLength || isDirtyData || axis.isLinked || axis.forceRedraw ||
10188 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { axis.userMin !== axis.oldUserMin || axis.userMax !== axis.oldUserMax || axis.alignToOthers()) {
10189  
10190 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (axis.resetStacks) {
10191 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { axis.resetStacks();
10192 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
10193  
10194 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { axis.forceRedraw = false;
10195  
10196 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // get data extremes if needed
10197 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { axis.getSeriesExtremes();
10198  
10199 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // get fixed positions based on tickInterval
10200 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { axis.setTickInterval();
10201  
10202 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // record old values to decide whether a rescale is necessary later on (#540)
10203 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { axis.oldUserMin = axis.userMin;
10204 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { axis.oldUserMax = axis.userMax;
10205  
10206 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // Mark as dirty if it is not already set to dirty and extremes have changed. #595.
10207 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (!axis.isDirty) {
10208 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { axis.isDirty = isDirtyAxisLength || axis.min !== axis.oldMin || axis.max !== axis.oldMax;
10209 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
10210 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { } else if (axis.cleanStacks) {
10211 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { axis.cleanStacks();
10212 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
10213 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { },
10214  
10215 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { /**
10216 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * Set the minimum and maximum of the axes after render time. If the
10217 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * `startOnTick` and `endOnTick` options are true, the minimum and maximum
10218 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * values are rounded off to the nearest tick. To prevent this, these
10219 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * options can be set to false before calling setExtremes. Also, setExtremes
10220 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * will not allow a range lower than the `minRange` option, which by default
10221 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * is the range of five points.
10222 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { *
10223 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * @param {Number} [newMin]
10224 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * The new minimum value.
10225 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * @param {Number} [newMax]
10226 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * The new maximum value.
10227 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * @param {Boolean} [redraw=true]
10228 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * Whether to redraw the chart or wait for an explicit call to
10229 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * {@link Highcharts.Chart#redraw}
10230 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * @param {AnimationOptions} [animation=true]
10231 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * Enable or modify animations.
10232 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * @param {Object} [eventArguments]
10233 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * Arguments to be accessed in event handler.
10234 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { *
10235 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * @sample highcharts/members/axis-setextremes/
10236 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * Set extremes from a button
10237 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * @sample highcharts/members/axis-setextremes-datetime/
10238 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * Set extremes on a datetime axis
10239 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * @sample highcharts/members/axis-setextremes-off-ticks/
10240 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * Set extremes off ticks
10241 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * @sample stock/members/axis-setextremes/
10242 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * Set extremes in Highstock
10243 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * @sample maps/members/axis-setextremes/
10244 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * Set extremes in Highmaps
10245 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { */
10246 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { setExtremes: function(newMin, newMax, redraw, animation, eventArguments) {
10247 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { var axis = this,
10248 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { chart = axis.chart;
10249  
10250 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { redraw = pick(redraw, true); // defaults to true
10251  
10252 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { each(axis.series, function(serie) {
10253 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { delete serie.kdTree;
10254 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { });
10255  
10256 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // Extend the arguments with min and max
10257 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { eventArguments = extend(eventArguments, {
10258 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { min: newMin,
10259 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { max: newMax
10260 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { });
10261  
10262 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // Fire the event
10263 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { fireEvent(axis, 'setExtremes', eventArguments, function() { // the default event handler
10264  
10265 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { axis.userMin = newMin;
10266 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { axis.userMax = newMax;
10267 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { axis.eventArgs = eventArguments;
10268  
10269 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (redraw) {
10270 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { chart.redraw(animation);
10271 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
10272 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { });
10273 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { },
10274  
10275 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { /**
10276 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * Overridable method for zooming chart. Pulled out in a separate method to allow overriding
10277 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * in stock charts.
10278 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { */
10279 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { zoom: function(newMin, newMax) {
10280 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { var dataMin = this.dataMin,
10281 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { dataMax = this.dataMax,
10282 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { options = this.options,
10283 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { min = Math.min(dataMin, pick(options.min, dataMin)),
10284 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { max = Math.max(dataMax, pick(options.max, dataMax));
10285  
10286 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (newMin !== this.min || newMax !== this.max) { // #5790
10287  
10288 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // Prevent pinch zooming out of range. Check for defined is for #1946. #1734.
10289 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (!this.allowZoomOutside) {
10290 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // #6014, sometimes newMax will be smaller than min (or newMin will be larger than max).
10291 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (defined(dataMin)) {
10292 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (newMin < min) {
10293 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { newMin = min;
10294 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
10295 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (newMin > max) {
10296 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { newMin = max;
10297 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
10298 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
10299 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (defined(dataMax)) {
10300 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (newMax < min) {
10301 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { newMax = min;
10302 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
10303 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (newMax > max) {
10304 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { newMax = max;
10305 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
10306 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
10307 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
10308  
10309 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // In full view, displaying the reset zoom button is not required
10310 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.displayBtn = newMin !== undefined || newMax !== undefined;
10311  
10312 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // Do it
10313 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.setExtremes(
10314 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { newMin,
10315 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { newMax,
10316 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { false,
10317 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { undefined, {
10318 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { trigger: 'zoom'
10319 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
10320 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { );
10321 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
10322  
10323 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { return true;
10324 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { },
10325  
10326 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { /**
10327 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * Update the axis metrics
10328 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { */
10329 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { setAxisSize: function() {
10330 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { var chart = this.chart,
10331 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { options = this.options,
10332 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { offsets = options.offsets || [0, 0, 0, 0], // top / right / bottom / left
10333 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { horiz = this.horiz,
10334 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { width = pick(options.width, chart.plotWidth - offsets[3] + offsets[1]),
10335 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { height = pick(options.height, chart.plotHeight - offsets[0] + offsets[2]),
10336 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { top = pick(options.top, chart.plotTop + offsets[0]),
10337 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { left = pick(options.left, chart.plotLeft + offsets[3]),
10338 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { percentRegex = /%$/;
10339  
10340 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // Check for percentage based input values. Rounding fixes problems with
10341 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // column overflow and plot line filtering (#4898, #4899)
10342 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (percentRegex.test(height)) {
10343 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { height = Math.round(parseFloat(height) / 100 * chart.plotHeight);
10344 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
10345 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (percentRegex.test(top)) {
10346 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { top = Math.round(parseFloat(top) / 100 * chart.plotHeight + chart.plotTop);
10347 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
10348  
10349 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // Expose basic values to use in Series object and navigator
10350 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.left = left;
10351 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.top = top;
10352 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.width = width;
10353 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.height = height;
10354 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.bottom = chart.chartHeight - height - top;
10355 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.right = chart.chartWidth - width - left;
10356  
10357 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // Direction agnostic properties
10358 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.len = Math.max(horiz ? width : height, 0); // Math.max fixes #905
10359 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.pos = horiz ? left : top; // distance from SVG origin
10360 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { },
10361  
10362 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { /**
10363 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * The returned object literal from the {@link Highcharts.Axis#getExtremes}
10364 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * function.
10365 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * @typedef {Object} Extremes
10366 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * @property {Number} dataMax
10367 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * The maximum value of the axis' associated series.
10368 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * @property {Number} dataMin
10369 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * The minimum value of the axis' associated series.
10370 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * @property {Number} max
10371 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * The maximum axis value, either automatic or set manually. If the
10372 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * `max` option is not set, `maxPadding` is 0 and `endOnTick` is
10373 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * false, this value will be the same as `dataMax`.
10374 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * @property {Number} min
10375 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * The minimum axis value, either automatic or set manually. If the
10376 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * `min` option is not set, `minPadding` is 0 and `startOnTick` is
10377 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * false, this value will be the same as `dataMin`.
10378 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { */
10379 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { /**
10380 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * Get the current extremes for the axis.
10381 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { *
10382 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * @returns {Extremes}
10383 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * An object containing extremes information.
10384 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { *
10385 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * @sample members/axis-getextremes/
10386 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * Report extremes by click on a button
10387 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * @sample maps/members/axis-getextremes/
10388 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * Get extremes in Highmaps
10389 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { */
10390 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { getExtremes: function() {
10391 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { var axis = this,
10392 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { isLog = axis.isLog,
10393 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { lin2log = axis.lin2log;
10394  
10395 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { return {
10396 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { min: isLog ? correctFloat(lin2log(axis.min)) : axis.min,
10397 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { max: isLog ? correctFloat(lin2log(axis.max)) : axis.max,
10398 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { dataMin: axis.dataMin,
10399 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { dataMax: axis.dataMax,
10400 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { userMin: axis.userMin,
10401 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { userMax: axis.userMax
10402 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { };
10403 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { },
10404  
10405 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { /**
10406 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * Get the zero plane either based on zero or on the min or max value.
10407 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * Used in bar and area plots
10408 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { */
10409 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { getThreshold: function(threshold) {
10410 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { var axis = this,
10411 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { isLog = axis.isLog,
10412 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { lin2log = axis.lin2log,
10413 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { realMin = isLog ? lin2log(axis.min) : axis.min,
10414 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { realMax = isLog ? lin2log(axis.max) : axis.max;
10415  
10416 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (threshold === null) {
10417 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { threshold = realMin;
10418 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { } else if (realMin > threshold) {
10419 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { threshold = realMin;
10420 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { } else if (realMax < threshold) {
10421 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { threshold = realMax;
10422 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
10423  
10424 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { return axis.translate(threshold, 0, 1, 0, 1);
10425 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { },
10426  
10427 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { /**
10428 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * Compute auto alignment for the axis label based on which side the axis is
10429 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * on and the given rotation for the label.
10430 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { *
10431 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * @param {Number} rotation
10432 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * The rotation in degrees as set by either the `rotation` or
10433 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * `autoRotation` options.
10434 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * @private
10435 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { */
10436 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { autoLabelAlign: function(rotation) {
10437 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { var ret,
10438 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { angle = (pick(rotation, 0) - (this.side * 90) + 720) % 360;
10439  
10440 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (angle > 15 && angle < 165) {
10441 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { ret = 'right';
10442 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { } else if (angle > 195 && angle < 345) {
10443 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { ret = 'left';
10444 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { } else {
10445 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { ret = 'center';
10446 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
10447 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { return ret;
10448 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { },
10449  
10450 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { /**
10451 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * Get the tick length and width for the axis.
10452 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * @param {String} prefix 'tick' or 'minorTick'
10453 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * @returns {Array} An array of tickLength and tickWidth
10454 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { */
10455 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { tickSize: function(prefix) {
10456 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { var options = this.options,
10457 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { tickLength = options[prefix + 'Length'],
10458 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { tickWidth = pick(options[prefix + 'Width'], prefix === 'tick' && this.isXAxis ? 1 : 0); // X axis defaults to 1
10459  
10460 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (tickWidth && tickLength) {
10461 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // Negate the length
10462 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (options[prefix + 'Position'] === 'inside') {
10463 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { tickLength = -tickLength;
10464 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
10465 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { return [tickLength, tickWidth];
10466 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { }
10467  
10468 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { },
10469  
10470 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { /**
10471 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * Return the size of the labels
10472 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { */
10473 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { labelMetrics: function() {
10474 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { var index = this.tickPositions && this.tickPositions[0] || 0;
10475 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { return this.chart.renderer.fontMetrics(
10476 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.options.labels.style && this.options.labels.style.fontSize,
10477 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { this.ticks[index] && this.ticks[index].label
10478 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { );
10479 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { },
10480  
10481 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { /**
10482 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * Prevent the ticks from getting so close we can't draw the labels. On a horizontal
10483 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * axis, this is handled by rotating the labels, removing ticks and adding ellipsis.
10484 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { * On a vertical axis remove ticks and add ellipsis.
10485 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { */
10486 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { unsquish: function() {
10487 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { var labelOptions = this.options.labels,
10488 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { horiz = this.horiz,
10489 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { tickInterval = this.tickInterval,
10490 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { newTickInterval = tickInterval,
10491 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { slotSize = this.len / (((this.categories ? 1 : 0) + this.max - this.min) / tickInterval),
10492 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { rotation,
10493 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { rotationOption = labelOptions.rotation,
10494 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { labelMetrics = this.labelMetrics(),
10495 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { step,
10496 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { bestScore = Number.MAX_VALUE,
10497 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { autoRotation,
10498 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { // Return the multiple of tickInterval that is needed to avoid collision
10499 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { getStep = function(spaceNeeded) {
10500 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { var step = spaceNeeded / (slotSize || 1);
10501 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { step = step > 1 ? Math.ceil(step) : 1;
10502 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { return step * tickInterval;
10503 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { };
10504  
10505 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { if (horiz) {
10506 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { autoRotation = !labelOptions.staggerLines && !labelOptions.step && ( // #3971
10507 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { defined(rotationOption) ? [rotationOption] :
10508 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) { slotSize < pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation
10509 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation );
10510  
10511 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation if (autoRotation) {
10512  
10513 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation // Loop over the given autoRotation options, and determine which gives the best score. The
10514 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation // best score is that with the lowest number of steps and a rotation closest to horizontal.
10515 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation each(autoRotation, function(rot) {
10516 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation var score;
10517  
10518 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation if (rot === rotationOption || (rot && rot >= -90 && rot <= 90)) { // #3891
10519  
10520 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { / step = getStep(Math.abs(labelMetrics.h / Math.sin(deg2rad * rot)));
10521  
10522 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { / score = step + Math.abs(rot / 360);
10523  
10524 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { / if (score < bestScore) {
10525 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { bestScore = score;
10526 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { rotation = rot;
10527 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { newTickInterval = step;
10528 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { }
10529 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { }
10530 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { });
10531 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { }
10532  
10533 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { } else if (!labelOptions.step) { // #4411
10534 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { newTickInterval = getStep(labelMetrics.h);
10535 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { }
10536  
10537 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { this.autoRotation = autoRotation;
10538 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { this.labelRotation = pick(rotation, rotationOption);
10539  
10540 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { return newTickInterval;
10541 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { },
10542  
10543 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { /**
10544 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { * Get the general slot width for this axis. This may change between the pre-render (from Axis.getOffset)
10545 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { * and the final tick rendering and placement (#5086).
10546 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { */
10547 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { getSlotWidth: function() {
10548 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { var chart = this.chart,
10549 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { horiz = this.horiz,
10550 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { labelOptions = this.options.labels,
10551 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { slotCount = Math.max(this.tickPositions.length - (this.categories ? 0 : 1), 1),
10552 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { marginLeft = chart.margin[3];
10553  
10554 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { return (
10555 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { horiz &&
10556 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) { (labelOptions.step || 0) < 2 &&
10557 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && !labelOptions.rotation && // #4415
10558 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ((this.staggerLines || 1) * this.len) / slotCount
10559 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ) || (!horiz && (
10560 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && (marginLeft && (marginLeft - chart.spacing[3])) ||
10561 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && chart.chartWidth * 0.33
10562 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && )); // #1580, #1931
10563  
10564 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
10565  
10566 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
10567 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Render the axis labels and determine whether ellipsis or rotation need to be applied
10568 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
10569 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && renderUnsquish: function() {
10570 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var chart = this.chart,
10571 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && renderer = chart.renderer,
10572 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && tickPositions = this.tickPositions,
10573 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ticks = this.ticks,
10574 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && labelOptions = this.options.labels,
10575 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && horiz = this.horiz,
10576 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && slotWidth = this.getSlotWidth(),
10577 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && innerWidth = Math.max(1, Math.round(slotWidth - 2 * (labelOptions.padding || 5))),
10578 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && attr = {},
10579 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && labelMetrics = this.labelMetrics(),
10580 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && textOverflowOption = labelOptions.style && labelOptions.style.textOverflow,
10581 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && css,
10582 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && maxLabelLength = 0,
10583 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && label,
10584 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && i,
10585 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && pos;
10586  
10587 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Set rotation option unless it is "auto", like in gauges
10588 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!isString(labelOptions.rotation)) {
10589 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && attr.rotation = labelOptions.rotation || 0; // #4443
10590 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10591  
10592 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Get the longest label length
10593 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && each(tickPositions, function(tick) {
10594 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && tick = ticks[tick];
10595 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (tick && tick.labelLength > maxLabelLength) {
10596 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && maxLabelLength = tick.labelLength;
10597 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10598 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
10599 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.maxLabelLength = maxLabelLength;
10600  
10601  
10602 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Handle auto rotation on horizontal axis
10603 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (this.autoRotation) {
10604  
10605 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Apply rotation only if the label is too wide for the slot, and
10606 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // the label is wider than its height.
10607 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (maxLabelLength > innerWidth && maxLabelLength > labelMetrics.h) {
10608 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && attr.rotation = this.labelRotation;
10609 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else {
10610 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.labelRotation = 0;
10611 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10612  
10613 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Handle word-wrap or ellipsis on vertical axis
10614 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else if (slotWidth) {
10615 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // For word-wrap or ellipsis
10616 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && css = {
10617 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && width: innerWidth + 'px'
10618 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && };
10619  
10620 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!textOverflowOption) {
10621 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && css.textOverflow = 'clip';
10622  
10623 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // On vertical axis, only allow word wrap if there is room for more lines.
10624 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && i = tickPositions.length;
10625 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && while (!horiz && i--) {
10626 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && pos = tickPositions[i];
10627 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && label = ticks[pos].label;
10628 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (label) {
10629 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Reset ellipsis in order to get the correct bounding box (#4070)
10630 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (label.styles && label.styles.textOverflow === 'ellipsis') {
10631 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && label.css({
10632 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && textOverflow: 'clip'
10633 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
10634  
10635 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Set the correct width in order to read the bounding box height (#4678, #5034)
10636 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else if (ticks[pos].labelLength > slotWidth) {
10637 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && label.css({
10638 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && width: slotWidth + 'px'
10639 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
10640 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10641  
10642 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (label.getBBox().height > this.len / tickPositions.length - (labelMetrics.h - labelMetrics.f)) {
10643 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && label.specCss = {
10644 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && textOverflow: 'ellipsis'
10645 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && };
10646 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10647 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10648 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10649 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10650 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10651  
10652  
10653 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Add ellipsis if the label length is significantly longer than ideal
10654 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (attr.rotation) {
10655 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && css = {
10656 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && width: (maxLabelLength > chart.chartHeight * 0.5 ? chart.chartHeight * 0.33 : chart.chartHeight) + 'px'
10657 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && };
10658 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!textOverflowOption) {
10659 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && css.textOverflow = 'ellipsis';
10660 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10661 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10662  
10663 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Set the explicit or automatic label alignment
10664 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.labelAlign = labelOptions.align || this.autoLabelAlign(this.labelRotation);
10665 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (this.labelAlign) {
10666 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && attr.align = this.labelAlign;
10667 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10668  
10669 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Apply general and specific CSS
10670 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && each(tickPositions, function(pos) {
10671 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var tick = ticks[pos],
10672 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && label = tick && tick.label;
10673 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (label) {
10674 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && label.attr(attr); // This needs to go before the CSS in old IE (#4502)
10675 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (css) {
10676 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && label.css(merge(css, label.specCss));
10677 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10678 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && delete label.specCss;
10679 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && tick.rotation = attr.rotation;
10680 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10681 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
10682  
10683 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Note: Why is this not part of getLabelPosition?
10684 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.tickRotCorr = renderer.rotCorr(labelMetrics.b, this.labelRotation || 0, this.side !== 0);
10685 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
10686  
10687 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
10688 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Return true if the axis has associated data
10689 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
10690 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && hasData: function() {
10691 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && return this.hasVisibleSeries || (defined(this.min) && defined(this.max) && !!this.tickPositions);
10692 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
10693  
10694 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
10695 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Adds the title defined in axis.options.title.
10696 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @param {Boolean} display - whether or not to display the title
10697 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
10698 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && addTitle: function(display) {
10699 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var axis = this,
10700 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && renderer = axis.chart.renderer,
10701 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && horiz = axis.horiz,
10702 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && opposite = axis.opposite,
10703 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && options = axis.options,
10704 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisTitleOptions = options.title,
10705 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && textAlign;
10706  
10707 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!axis.axisTitle) {
10708 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && textAlign = axisTitleOptions.textAlign;
10709 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!textAlign) {
10710 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && textAlign = (horiz ? {
10711 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && low: 'left',
10712 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && middle: 'center',
10713 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && high: 'right'
10714 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } : {
10715 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && low: opposite ? 'right' : 'left',
10716 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && middle: 'center',
10717 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && high: opposite ? 'left' : 'right'
10718 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && })[axisTitleOptions.align];
10719 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10720 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.axisTitle = renderer.text(
10721 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisTitleOptions.text,
10722 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 0,
10723 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 0,
10724 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisTitleOptions.useHTML
10725 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && )
10726 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .attr({
10727 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && zIndex: 7,
10728 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && rotation: axisTitleOptions.rotation || 0,
10729 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && align: textAlign
10730 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && })
10731 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .addClass('highcharts-axis-title')
10732  
10733 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .css(axisTitleOptions.style)
10734  
10735 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .add(axis.axisGroup);
10736 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.axisTitle.isNew = true;
10737 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10738  
10739 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // hide or show the title depending on whether showEmpty is set
10740 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.axisTitle[display ? 'show' : 'hide'](true);
10741 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
10742  
10743 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
10744 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Generates a tick for initial positioning.
10745 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && *
10746 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @private
10747 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @param {number} pos
10748 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * The tick position in axis values.
10749 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @param {number} i
10750 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * The index of the tick in {@link Axis.tickPositions}.
10751 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
10752 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && generateTick: function(pos) {
10753 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var ticks = this.ticks;
10754  
10755 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!ticks[pos]) {
10756 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ticks[pos] = new Tick(this, pos);
10757 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else {
10758 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ticks[pos].addLabel(); // update labels depending on tick interval
10759 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10760 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
10761  
10762 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
10763 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Render the tick labels to a preliminary position to get their sizes
10764 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
10765 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && getOffset: function() {
10766 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var axis = this,
10767 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && chart = axis.chart,
10768 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && renderer = chart.renderer,
10769 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && options = axis.options,
10770 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && tickPositions = axis.tickPositions,
10771 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ticks = axis.ticks,
10772 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && horiz = axis.horiz,
10773 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && side = axis.side,
10774 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && invertedSide = chart.inverted && !axis.isZAxis ? [1, 0, 3, 2][side] : side,
10775 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && hasData,
10776 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && showAxis,
10777 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && titleOffset = 0,
10778 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && titleOffsetOption,
10779 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && titleMargin = 0,
10780 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisTitleOptions = options.title,
10781 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && labelOptions = options.labels,
10782 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && labelOffset = 0, // reset
10783 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && labelOffsetPadded,
10784 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisOffset = chart.axisOffset,
10785 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && clipOffset = chart.clipOffset,
10786 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && clip,
10787 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && directionFactor = [-1, 1, 1, -1][side],
10788 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && className = options.className,
10789 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisParent = axis.axisParent, // Used in color axis
10790 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && lineHeightCorrection,
10791 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && tickSize = this.tickSize('tick');
10792  
10793 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // For reuse in Axis.render
10794 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && hasData = axis.hasData();
10795 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.showAxis = showAxis = hasData || pick(options.showEmpty, true);
10796  
10797 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Set/reset staggerLines
10798 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.staggerLines = axis.horiz && labelOptions.staggerLines;
10799  
10800 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Create the axisGroup and gridGroup elements on first iteration
10801 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!axis.axisGroup) {
10802 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.gridGroup = renderer.g('grid')
10803 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .attr({
10804 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && zIndex: options.gridZIndex || 1
10805 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && })
10806 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .addClass('highcharts-' + this.coll.toLowerCase() + '-grid ' + (className || ''))
10807 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .add(axisParent);
10808 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.axisGroup = renderer.g('axis')
10809 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .attr({
10810 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && zIndex: options.zIndex || 2
10811 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && })
10812 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .addClass('highcharts-' + this.coll.toLowerCase() + ' ' + (className || ''))
10813 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .add(axisParent);
10814 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.labelGroup = renderer.g('axis-labels')
10815 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .attr({
10816 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && zIndex: labelOptions.zIndex || 7
10817 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && })
10818 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .addClass('highcharts-' + axis.coll.toLowerCase() + '-labels ' + (className || ''))
10819 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .add(axisParent);
10820 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10821  
10822 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (hasData || axis.isLinked) {
10823  
10824 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Generate ticks
10825 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && each(tickPositions, function(pos, i) {
10826 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // i is not used here, but may be used in overrides
10827 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.generateTick(pos, i);
10828 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
10829  
10830 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.renderUnsquish();
10831  
10832  
10833 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Left side must be align: right and right side must have align: left for labels
10834 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (labelOptions.reserveSpace !== false && (side === 0 || side === 2 || {
10835 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 1: 'left',
10836 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 3: 'right'
10837 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }[side] === axis.labelAlign || axis.labelAlign === 'center')) {
10838 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && each(tickPositions, function(pos) {
10839  
10840 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // get the highest offset
10841 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && labelOffset = Math.max(
10842 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ticks[pos].getLabelSize(),
10843 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && labelOffset
10844 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && );
10845 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
10846 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10847  
10848 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (axis.staggerLines) {
10849 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && labelOffset *= axis.staggerLines;
10850 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.labelOffset = labelOffset * (axis.opposite ? -1 : 1);
10851 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10852  
10853  
10854 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else { // doesn't have data
10855 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && objectEach(ticks, function(tick, n) {
10856 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && tick.destroy();
10857 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && delete ticks[n];
10858 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
10859 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10860  
10861 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (axisTitleOptions && axisTitleOptions.text && axisTitleOptions.enabled !== false) {
10862 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.addTitle(showAxis);
10863  
10864 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (showAxis && axisTitleOptions.reserveSpace !== false) {
10865 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.titleOffset = titleOffset =
10866 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.axisTitle.getBBox()[horiz ? 'height' : 'width'];
10867 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && titleOffsetOption = axisTitleOptions.offset;
10868 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && titleMargin = defined(titleOffsetOption) ? 0 : pick(axisTitleOptions.margin, horiz ? 5 : 10);
10869 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10870 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10871  
10872 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Render the axis line
10873 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.renderLine();
10874  
10875 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // handle automatic or user set offset
10876 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.offset = directionFactor * pick(options.offset, axisOffset[side]);
10877  
10878 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.tickRotCorr = axis.tickRotCorr || {
10879 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && x: 0,
10880 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && y: 0
10881 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }; // polar
10882 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (side === 0) {
10883 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && lineHeightCorrection = -axis.labelMetrics().h;
10884 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else if (side === 2) {
10885 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && lineHeightCorrection = axis.tickRotCorr.y;
10886 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else {
10887 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && lineHeightCorrection = 0;
10888 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10889  
10890 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Find the padded label offset
10891 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && labelOffsetPadded = Math.abs(labelOffset) + titleMargin;
10892 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (labelOffset) {
10893 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && labelOffsetPadded -= lineHeightCorrection;
10894 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && labelOffsetPadded += directionFactor * (horiz ? pick(labelOptions.y, axis.tickRotCorr.y + directionFactor * 8) : labelOptions.x);
10895 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10896 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.axisTitleMargin = pick(titleOffsetOption, labelOffsetPadded);
10897  
10898 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisOffset[side] = Math.max(
10899 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisOffset[side],
10900 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.axisTitleMargin + titleOffset + directionFactor * axis.offset,
10901 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && labelOffsetPadded, // #3027
10902 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && hasData && tickPositions.length && tickSize ?
10903 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && tickSize[0] + directionFactor * axis.offset :
10904  
10905 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && );
10906  
10907 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Decide the clipping needed to keep the graph inside the plot area and
10908 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // axis lines
10909 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && clip = Math.floor(axis.axisLine.strokeWidth() / 2) * 2; // #4308, #4371
10910 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (options.offset > 0) {
10911 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && clip -= options.offset * 2;
10912 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10913 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && clipOffset[invertedSide] = Math.max(
10914 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && clipOffset[invertedSide] || clip,
10915 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && clip
10916 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && );
10917 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
10918  
10919 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
10920 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Internal function to get the path for the axis line. Extended for polar
10921 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * charts.
10922 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && *
10923 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @param {Number} lineWidth
10924 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * The line width in pixels.
10925 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @return {Array}
10926 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * The SVG path definition in array form.
10927 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
10928 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && getLinePath: function(lineWidth) {
10929 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var chart = this.chart,
10930 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && opposite = this.opposite,
10931 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && offset = this.offset,
10932 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && horiz = this.horiz,
10933 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && lineLeft = this.left + (opposite ? this.width : 0) + offset,
10934 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && lineTop = chart.chartHeight - this.bottom -
10935 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && (opposite ? this.height : 0) + offset;
10936  
10937 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (opposite) {
10938 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && lineWidth *= -1; // crispify the other way - #1480, #1687
10939 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10940  
10941 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && return chart.renderer
10942 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .crispLine([
10943 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 'M',
10944 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && horiz ?
10945 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.left :
10946 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && lineLeft,
10947 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && horiz ?
10948 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && lineTop :
10949 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.top,
10950 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 'L',
10951 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && horiz ?
10952 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && chart.chartWidth - this.right :
10953 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && lineLeft,
10954 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && horiz ?
10955 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && lineTop :
10956 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && chart.chartHeight - this.bottom
10957 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ], lineWidth);
10958 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
10959  
10960 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
10961 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Render the axis line
10962 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
10963 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && renderLine: function() {
10964 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!this.axisLine) {
10965 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.axisLine = this.chart.renderer.path()
10966 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .addClass('highcharts-axis-line')
10967 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .add(this.axisGroup);
10968  
10969  
10970 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.axisLine.attr({
10971 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && stroke: this.options.lineColor,
10972 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 'stroke-width': this.options.lineWidth,
10973 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && zIndex: 7
10974 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
10975  
10976 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
10977 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
10978  
10979 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
10980 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Position the title
10981 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
10982 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && getTitlePosition: function() {
10983 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // compute anchor points for each of the title align options
10984 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var horiz = this.horiz,
10985 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisLeft = this.left,
10986 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisTop = this.top,
10987 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisLength = this.len,
10988 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisTitleOptions = this.options.title,
10989 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && margin = horiz ? axisLeft : axisTop,
10990 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && opposite = this.opposite,
10991 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && offset = this.offset,
10992 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && xOption = axisTitleOptions.x || 0,
10993 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && yOption = axisTitleOptions.y || 0,
10994 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && fontSize = this.chart.renderer.fontMetrics(axisTitleOptions.style && axisTitleOptions.style.fontSize, this.axisTitle).f,
10995  
10996 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // the position in the length direction of the axis
10997 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && alongAxis = {
10998 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && low: margin + (horiz ? 0 : axisLength),
10999 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && middle: margin + axisLength / 2,
11000 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && high: margin + (horiz ? axisLength : 0)
11001 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }[axisTitleOptions.align],
11002  
11003 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // the position in the perpendicular direction of the axis
11004 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && offAxis = (horiz ? axisTop + this.height : axisLeft) +
11005 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && (horiz ? 1 : -1) * // horizontal axis reverses the margin
11006 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && (opposite ? -1 : 1) * // so does opposite axes
11007 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.axisTitleMargin +
11008 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && (this.side === 2 ? fontSize : 0);
11009  
11010 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && return {
11011 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && x: horiz ?
11012 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && alongAxis + xOption : offAxis + (opposite ? this.width : 0) + offset + xOption,
11013 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && y: horiz ?
11014 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && offAxis + yOption - (opposite ? this.height : 0) + offset : alongAxis + yOption
11015 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && };
11016 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
11017  
11018 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
11019 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Render a minor tick into the given position. If a minor tick already
11020 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * exists in this position, move it.
11021 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @param {number} pos - The position in axis values.
11022 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
11023 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && renderMinorTick: function(pos) {
11024 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var slideInTicks = this.chart.hasRendered && isNumber(this.oldMin),
11025 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && minorTicks = this.minorTicks;
11026  
11027 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!minorTicks[pos]) {
11028 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && minorTicks[pos] = new Tick(this, pos, 'minor');
11029 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11030  
11031 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Render new ticks in old position
11032 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (slideInTicks && minorTicks[pos].isNew) {
11033 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && minorTicks[pos].render(null, true);
11034 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11035  
11036 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && minorTicks[pos].render(null, false, 1);
11037 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
11038  
11039 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
11040 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Render a major tick into the given position. If a tick already exists
11041 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * in this position, move it.
11042 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @param {number} pos - The position in axis values
11043 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @param {number} i - The tick index
11044 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
11045 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && renderTick: function(pos, i) {
11046 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var isLinked = this.isLinked,
11047 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ticks = this.ticks,
11048 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && slideInTicks = this.chart.hasRendered && isNumber(this.oldMin);
11049  
11050 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Linked axes need an extra check to find out if
11051 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!isLinked || (pos >= this.min && pos <= this.max)) {
11052  
11053 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!ticks[pos]) {
11054 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ticks[pos] = new Tick(this, pos);
11055 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11056  
11057 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // render new ticks in old position
11058 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (slideInTicks && ticks[pos].isNew) {
11059 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ticks[pos].render(i, true, 0.1);
11060 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11061  
11062 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ticks[pos].render(i);
11063 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11064 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
11065  
11066 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
11067 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Render the axis
11068 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
11069 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && render: function() {
11070 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var axis = this,
11071 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && chart = axis.chart,
11072 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && renderer = chart.renderer,
11073 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && options = axis.options,
11074 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && isLog = axis.isLog,
11075 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && lin2log = axis.lin2log,
11076 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && isLinked = axis.isLinked,
11077 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && tickPositions = axis.tickPositions,
11078 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisTitle = axis.axisTitle,
11079 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ticks = axis.ticks,
11080 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && minorTicks = axis.minorTicks,
11081 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && alternateBands = axis.alternateBands,
11082 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && stackLabelOptions = options.stackLabels,
11083 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && alternateGridColor = options.alternateGridColor,
11084 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && tickmarkOffset = axis.tickmarkOffset,
11085 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisLine = axis.axisLine,
11086 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && showAxis = axis.showAxis,
11087 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && animation = animObject(renderer.globalAnimation),
11088 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && from,
11089 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && to;
11090  
11091 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Reset
11092 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.labelEdge.length = 0;
11093 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && //axis.justifyToPlot = overflow === 'justify';
11094 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.overlap = false;
11095  
11096 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Mark all elements inActive before we go over and mark the active ones
11097 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && each([ticks, minorTicks, alternateBands], function(coll) {
11098 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && objectEach(coll, function(tick) {
11099 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && tick.isActive = false;
11100 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11101 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11102  
11103 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // If the series has data draw the ticks. Else only the line and title
11104 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (axis.hasData() || isLinked) {
11105  
11106 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // minor ticks
11107 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (axis.minorTickInterval && !axis.categories) {
11108 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && each(axis.getMinorTickPositions(), function(pos) {
11109 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.renderMinorTick(pos);
11110 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11111 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11112  
11113 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Major ticks. Pull out the first item and render it last so that
11114 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // we can get the position of the neighbour label. #808.
11115 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (tickPositions.length) { // #1300
11116 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && each(tickPositions, function(pos, i) {
11117 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.renderTick(pos, i);
11118 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11119 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // In a categorized axis, the tick marks are displayed between labels. So
11120 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // we need to add a tick mark and grid line at the left edge of the X axis.
11121 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (tickmarkOffset && (axis.min === 0 || axis.single)) {
11122 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!ticks[-1]) {
11123 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ticks[-1] = new Tick(axis, -1, null, true);
11124 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11125 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ticks[-1].render(-1);
11126 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11127  
11128 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11129  
11130 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // alternate grid color
11131 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (alternateGridColor) {
11132 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && each(tickPositions, function(pos, i) {
11133 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && to = tickPositions[i + 1] !== undefined ? tickPositions[i + 1] + tickmarkOffset : axis.max - tickmarkOffset;
11134 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (i % 2 === 0 && pos < axis.max && to <= axis.max + (chart.polar ? -tickmarkOffset : tickmarkOffset)) { // #2248, #4660
11135 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!alternateBands[pos]) {
11136 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && alternateBands[pos] = new H.PlotLineOrBand(axis);
11137 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11138 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && from = pos + tickmarkOffset; // #949
11139 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && alternateBands[pos].options = {
11140 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && from: isLog ? lin2log(from) : from,
11141 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && to: isLog ? lin2log(to) : to,
11142 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && color: alternateGridColor
11143 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && };
11144 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && alternateBands[pos].render();
11145 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && alternateBands[pos].isActive = true;
11146 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11147 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11148 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11149  
11150 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // custom plot lines and bands
11151 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!axis._addedPlotLB) { // only first time
11152 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && each((options.plotLines || []).concat(options.plotBands || []), function(plotLineOptions) {
11153 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.addPlotBandOrLine(plotLineOptions);
11154 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11155 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis._addedPlotLB = true;
11156 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11157  
11158 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } // end if hasData
11159  
11160 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Remove inactive ticks
11161 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && each([ticks, minorTicks, alternateBands], function(coll) {
11162 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var i,
11163 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && forDestruction = [],
11164 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && delay = animation.duration,
11165 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && destroyInactiveItems = function() {
11166 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && i = forDestruction.length;
11167 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && while (i--) {
11168 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // When resizing rapidly, the same items may be destroyed in different timeouts,
11169 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // or the may be reactivated
11170 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (coll[forDestruction[i]] && !coll[forDestruction[i]].isActive) {
11171 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && coll[forDestruction[i]].destroy();
11172 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && delete coll[forDestruction[i]];
11173 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11174 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11175  
11176 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && };
11177  
11178 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && objectEach(coll, function(tick, pos) {
11179 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!tick.isActive) {
11180 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Render to zero opacity
11181 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && tick.render(pos, false, 0);
11182 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && tick.isActive = false;
11183 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && forDestruction.push(pos);
11184 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11185 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11186  
11187 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // When the objects are finished fading out, destroy them
11188 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && syncTimeout(
11189 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && destroyInactiveItems,
11190 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && coll === alternateBands || !chart.hasRendered || !delay ? 0 : delay
11191 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && );
11192 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11193  
11194 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Set the axis line path
11195 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (axisLine) {
11196 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisLine[axisLine.isPlaced ? 'animate' : 'attr']({
11197 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && d: this.getLinePath(axisLine.strokeWidth())
11198 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11199 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisLine.isPlaced = true;
11200  
11201 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Show or hide the line depending on options.showEmpty
11202 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisLine[showAxis ? 'show' : 'hide'](true);
11203 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11204  
11205 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (axisTitle && showAxis) {
11206 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var titleXy = axis.getTitlePosition();
11207 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (isNumber(titleXy.y)) {
11208 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisTitle[axisTitle.isNew ? 'attr' : 'animate'](titleXy);
11209 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisTitle.isNew = false;
11210 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else {
11211 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisTitle.attr('y', -9999);
11212 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisTitle.isNew = true;
11213 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11214 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11215  
11216 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Stacked totals:
11217 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (stackLabelOptions && stackLabelOptions.enabled) {
11218 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.renderStackTotals();
11219 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11220 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // End stacked totals
11221  
11222 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.isDirty = false;
11223 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
11224  
11225 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
11226 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Redraw the axis to reflect changes in the data or axis extremes
11227 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
11228 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && redraw: function() {
11229  
11230 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (this.visible) {
11231 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // render the axis
11232 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.render();
11233  
11234 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // move plot lines and bands
11235 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && each(this.plotLinesAndBands, function(plotLine) {
11236 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && plotLine.render();
11237 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11238 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11239  
11240 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // mark associated series as dirty and ready for redraw
11241 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && each(this.series, function(series) {
11242 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && series.isDirty = true;
11243 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11244  
11245 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
11246  
11247 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Properties to survive after destroy, needed for Axis.update (#4317,
11248 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // #5773, #5881).
11249 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && keepProps: ['extKey', 'hcEvents', 'names', 'series', 'userMax', 'userMin'],
11250  
11251 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
11252 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Destroys an Axis instance. See {@link Axis#remove} for the API endpoint
11253 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * to fully remove the axis.
11254 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && *
11255 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @private
11256 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @param {Boolean} keepEvents
11257 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Whether to preserve events, used internally in Axis.update.
11258 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
11259 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && destroy: function(keepEvents) {
11260 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var axis = this,
11261 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && stacks = axis.stacks,
11262 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && plotLinesAndBands = axis.plotLinesAndBands,
11263 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && plotGroup,
11264 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && i;
11265  
11266 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Remove the events
11267 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!keepEvents) {
11268 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && removeEvent(axis);
11269 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11270  
11271 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Destroy each stack total
11272 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && objectEach(stacks, function(stack, stackKey) {
11273 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && destroyObjectProperties(stack);
11274  
11275 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && stacks[stackKey] = null;
11276 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11277  
11278 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Destroy collections
11279 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && each([axis.ticks, axis.minorTicks, axis.alternateBands], function(coll) {
11280 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && destroyObjectProperties(coll);
11281 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11282 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (plotLinesAndBands) {
11283 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && i = plotLinesAndBands.length;
11284 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && while (i--) { // #1975
11285 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && plotLinesAndBands[i].destroy();
11286 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11287 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11288  
11289 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Destroy local variables
11290 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && each(['stackTotalGroup', 'axisLine', 'axisTitle', 'axisGroup', 'gridGroup', 'labelGroup', 'cross'], function(prop) {
11291 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (axis[prop]) {
11292 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis[prop] = axis[prop].destroy();
11293 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11294 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11295  
11296 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Destroy each generated group for plotlines and plotbands
11297 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && for (plotGroup in axis.plotLinesAndBandsGroups) {
11298 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.plotLinesAndBandsGroups[plotGroup] = axis.plotLinesAndBandsGroups[plotGroup].destroy();
11299 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11300  
11301 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Delete all properties and fall back to the prototype.
11302 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && objectEach(axis, function(val, key) {
11303 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (inArray(key, axis.keepProps) === -1) {
11304 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && delete axis[key];
11305 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11306 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11307 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
11308  
11309 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
11310 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Internal function to draw a crosshair.
11311 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && *
11312 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @param {PointerEvent} [e]
11313 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * The event arguments from the modified pointer event, extended
11314 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * with `chartX` and `chartY`
11315 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @param {Point} [point]
11316 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * The Point object if the crosshair snaps to points.
11317 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
11318 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && drawCrosshair: function(e, point) {
11319  
11320 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var path,
11321 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && options = this.crosshair,
11322 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && snap = pick(options.snap, true),
11323 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && pos,
11324 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && categorized,
11325 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && graphic = this.cross;
11326  
11327 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Use last available event when updating non-snapped crosshairs without
11328 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // mouse interaction (#5287)
11329 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!e) {
11330 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && e = this.cross && this.cross.e;
11331 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11332  
11333 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (
11334 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Disabled in options
11335 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && !this.crosshair ||
11336 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Snap
11337 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ((defined(point) || !snap) === false)
11338 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ) {
11339 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.hideCrosshair();
11340 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else {
11341  
11342 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Get the path
11343 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!snap) {
11344 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && pos = e && (this.horiz ? e.chartX - this.pos : this.len - e.chartY + this.pos);
11345 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else if (defined(point)) {
11346 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && pos = this.isXAxis ? point.plotX : this.len - point.plotY; // #3834
11347 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11348  
11349 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (defined(pos)) {
11350 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && path = this.getPlotLinePath(
11351 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // First argument, value, only used on radial
11352 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && point && (this.isXAxis ? point.x : pick(point.stackY, point.y)),
11353 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && null,
11354 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && null,
11355 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && null,
11356 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && pos // Translated position
11357 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ) || null; // #3189
11358 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11359  
11360 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!defined(path)) {
11361 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.hideCrosshair();
11362 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && return;
11363 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11364  
11365 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && categorized = this.categories && !this.isRadial;
11366  
11367 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Draw the cross
11368 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!graphic) {
11369 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.cross = graphic = this.chart.renderer
11370 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .path()
11371 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .addClass('highcharts-crosshair highcharts-crosshair-' +
11372 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && (categorized ? 'category ' : 'thin ') + options.className)
11373 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .attr({
11374 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && zIndex: pick(options.zIndex, 2)
11375 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && })
11376 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .add();
11377  
11378  
11379 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Presentational attributes
11380 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && graphic.attr({
11381 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 'stroke': options.color || (categorized ? color('#ccd6eb').setOpacity(0.25).get() : '#cccccc'),
11382 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 'stroke-width': pick(options.width, 1)
11383 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11384 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (options.dashStyle) {
11385 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && graphic.attr({
11386 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && dashstyle: options.dashStyle
11387 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11388 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11389  
11390  
11391 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11392  
11393 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && graphic.show().attr({
11394 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && d: path
11395 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11396  
11397 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (categorized && !options.width) {
11398 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && graphic.attr({
11399 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 'stroke-width': this.transA
11400 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11401 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11402 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.cross.e = e;
11403 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11404 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
11405  
11406 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
11407 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Hide the crosshair.
11408 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
11409 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && hideCrosshair: function() {
11410 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (this.cross) {
11411 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.cross.hide();
11412 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11413 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11414 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }); // end Axis
11415  
11416 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && H.Axis = Axis;
11417 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && return Axis;
11418 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }(Highcharts));
11419 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && (function(H) {
11420 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
11421 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * (c) 2010-2017 Torstein Honsi
11422 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && *
11423 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * License: www.highcharts.com/license
11424 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
11425 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var Axis = H.Axis,
11426 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && getMagnitude = H.getMagnitude,
11427 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && map = H.map,
11428 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && normalizeTickInterval = H.normalizeTickInterval,
11429 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && pick = H.pick;
11430 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
11431 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Methods defined on the Axis prototype
11432 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
11433  
11434 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
11435 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Set the tick positions of a logarithmic axis
11436 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
11437 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && Axis.prototype.getLogTickPositions = function(interval, min, max, minor) {
11438 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var axis = this,
11439 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && options = axis.options,
11440 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axisLength = axis.len,
11441 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && lin2log = axis.lin2log,
11442 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && log2lin = axis.log2lin,
11443 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Since we use this method for both major and minor ticks,
11444 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // use a local variable and return the result
11445 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && positions = [];
11446  
11447 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Reset
11448 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!minor) {
11449 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis._minorAutoInterval = null;
11450 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11451  
11452 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // First case: All ticks fall on whole logarithms: 1, 10, 100 etc.
11453 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (interval >= 0.5) {
11454 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && interval = Math.round(interval);
11455 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && positions = axis.getLinearTickPositions(interval, min, max);
11456  
11457 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Second case: We need intermediary ticks. For example
11458 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // 1, 2, 4, 6, 8, 10, 20, 40 etc.
11459 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else if (interval >= 0.08) {
11460 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var roundedMin = Math.floor(min),
11461 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && intermediate,
11462 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && i,
11463 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && j,
11464 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && len,
11465 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && pos,
11466 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && lastPos,
11467 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && break2;
11468  
11469 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (interval > 0.3) {
11470 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && intermediate = [1, 2, 4];
11471 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else if (interval > 0.15) { // 0.2 equals five minor ticks per 1, 10, 100 etc
11472 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && intermediate = [1, 2, 4, 6, 8];
11473 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else { // 0.1 equals ten minor ticks per 1, 10, 100 etc
11474 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && intermediate = [1, 2, 3, 4, 5, 6, 7, 8, 9];
11475 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11476  
11477 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && for (i = roundedMin; i < max + 1 && !break2; i++) {
11478 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && len = intermediate.length;
11479 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && for (j = 0; j < len && !break2; j++) {
11480 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && pos = log2lin(lin2log(i) * intermediate[j]);
11481 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (pos > min && (!minor || lastPos <= max) && lastPos !== undefined) { // #1670, lastPos is #3113
11482 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && positions.push(lastPos);
11483 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11484  
11485 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (lastPos > max) {
11486 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && break2 = true;
11487 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11488 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && lastPos = pos;
11489 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11490 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11491  
11492 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Third case: We are so deep in between whole logarithmic values that
11493 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // we might as well handle the tick positions like a linear axis. For
11494 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // example 1.01, 1.02, 1.03, 1.04.
11495 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else {
11496 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var realMin = lin2log(min),
11497 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && realMax = lin2log(max),
11498 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && tickIntervalOption = options[minor ? 'minorTickInterval' : 'tickInterval'],
11499 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && filteredTickIntervalOption = tickIntervalOption === 'auto' ? null : tickIntervalOption,
11500 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && tickPixelIntervalOption = options.tickPixelInterval / (minor ? 5 : 1),
11501 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && totalPixelLength = minor ? axisLength / axis.tickPositions.length : axisLength;
11502  
11503 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && interval = pick(
11504 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && filteredTickIntervalOption,
11505 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis._minorAutoInterval,
11506 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && (realMax - realMin) * tickPixelIntervalOption / (totalPixelLength || 1)
11507 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && );
11508  
11509 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && interval = normalizeTickInterval(
11510 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && interval,
11511 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && null,
11512 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && getMagnitude(interval)
11513 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && );
11514  
11515 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && positions = map(axis.getLinearTickPositions(
11516 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && interval,
11517 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && realMin,
11518 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && realMax
11519 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ), log2lin);
11520  
11521 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!minor) {
11522 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis._minorAutoInterval = interval / 5;
11523 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11524 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11525  
11526 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Set the axis-level tickInterval variable
11527 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!minor) {
11528 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.tickInterval = interval;
11529 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11530 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && return positions;
11531 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && };
11532  
11533 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && Axis.prototype.log2lin = function(num) {
11534 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && return Math.log(num) / Math.LN10;
11535 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && };
11536  
11537 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && Axis.prototype.lin2log = function(num) {
11538 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && return Math.pow(10, num);
11539 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && };
11540  
11541 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }(Highcharts));
11542 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && (function(H, Axis) {
11543 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
11544 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * (c) 2010-2017 Torstein Honsi
11545 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && *
11546 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * License: www.highcharts.com/license
11547 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
11548 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var arrayMax = H.arrayMax,
11549 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && arrayMin = H.arrayMin,
11550 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && defined = H.defined,
11551 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && destroyObjectProperties = H.destroyObjectProperties,
11552 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && each = H.each,
11553 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && erase = H.erase,
11554 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && merge = H.merge,
11555 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && pick = H.pick;
11556 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /*
11557 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * The object wrapper for plot lines and plot bands
11558 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @param {Object} options
11559 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
11560 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && H.PlotLineOrBand = function(axis, options) {
11561 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.axis = axis;
11562  
11563 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (options) {
11564 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.options = options;
11565 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.id = options.id;
11566 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11567 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && };
11568  
11569 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && H.PlotLineOrBand.prototype = {
11570  
11571 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
11572 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Render the plot line or plot band. If it is already existing,
11573 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * move it.
11574 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
11575 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && render: function() {
11576 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var plotLine = this,
11577 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis = plotLine.axis,
11578 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && horiz = axis.horiz,
11579 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && options = plotLine.options,
11580 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && optionsLabel = options.label,
11581 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && label = plotLine.label,
11582 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && to = options.to,
11583 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && from = options.from,
11584 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && value = options.value,
11585 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && isBand = defined(from) && defined(to),
11586 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && isLine = defined(value),
11587 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && svgElem = plotLine.svgElem,
11588 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && isNew = !svgElem,
11589 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && path = [],
11590 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && color = options.color,
11591 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && zIndex = pick(options.zIndex, 0),
11592 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && events = options.events,
11593 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && attribs = {
11594 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 'class': 'highcharts-plot-' + (isBand ? 'band ' : 'line ') + (options.className || '')
11595 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
11596 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && groupAttribs = {},
11597 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && renderer = axis.chart.renderer,
11598 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && groupName = isBand ? 'bands' : 'lines',
11599 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && group,
11600 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && log2lin = axis.log2lin;
11601  
11602 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // logarithmic conversion
11603 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (axis.isLog) {
11604 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && from = log2lin(from);
11605 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && to = log2lin(to);
11606 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && value = log2lin(value);
11607 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11608  
11609  
11610 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Set the presentational attributes
11611 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (isLine) {
11612 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && attribs = {
11613 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && stroke: color,
11614 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 'stroke-width': options.width
11615 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && };
11616 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (options.dashStyle) {
11617 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && attribs.dashstyle = options.dashStyle;
11618 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11619  
11620 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else if (isBand) { // plot band
11621 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (color) {
11622 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && attribs.fill = color;
11623 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11624 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (options.borderWidth) {
11625 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && attribs.stroke = options.borderColor;
11626 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && attribs['stroke-width'] = options.borderWidth;
11627 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11628 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11629  
11630  
11631 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Grouping and zIndex
11632 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && groupAttribs.zIndex = zIndex;
11633 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && groupName += '-' + zIndex;
11634  
11635 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && group = axis.plotLinesAndBandsGroups[groupName];
11636 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!group) {
11637 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.plotLinesAndBandsGroups[groupName] = group = renderer.g('plot-' + groupName)
11638 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .attr(groupAttribs).add();
11639 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11640  
11641 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Create the path
11642 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (isNew) {
11643 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && plotLine.svgElem = svgElem =
11644 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && renderer
11645 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .path()
11646 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .attr(attribs).add(group);
11647 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11648  
11649  
11650 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Set the path or return
11651 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (isLine) {
11652 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && path = axis.getPlotLinePath(value, svgElem.strokeWidth());
11653 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else if (isBand) { // plot band
11654 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && path = axis.getPlotBandPath(from, to, options);
11655 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else {
11656 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && return;
11657 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11658  
11659  
11660 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // common for lines and bands
11661 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (isNew && path && path.length) {
11662 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && svgElem.attr({
11663 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && d: path
11664 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11665  
11666 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // events
11667 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (events) {
11668 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && H.objectEach(events, function(event, eventType) {
11669 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && svgElem.on(eventType, function(e) {
11670 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && events[eventType].apply(plotLine, [e]);
11671 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11672 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11673 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11674 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else if (svgElem) {
11675 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (path) {
11676 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && svgElem.show();
11677 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && svgElem.animate({
11678 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && d: path
11679 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11680 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else {
11681 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && svgElem.hide();
11682 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (label) {
11683 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && plotLine.label = label = label.destroy();
11684 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11685 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11686 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11687  
11688 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // the plot band/line label
11689 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (optionsLabel && defined(optionsLabel.text) && path && path.length &&
11690 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && axis.width > 0 && axis.height > 0 && !path.flat) {
11691 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // apply defaults
11692 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && optionsLabel = merge({
11693 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && align: horiz && isBand && 'center',
11694 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && x: horiz ? !isBand && 4 : 10,
11695 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && verticalAlign: !horiz && isBand && 'middle',
11696 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && y: horiz ? isBand ? 16 : 10 : isBand ? 6 : -4,
11697 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && rotation: horiz && !isBand && 90
11698 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }, optionsLabel);
11699  
11700 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.renderLabel(optionsLabel, path, isBand, zIndex);
11701  
11702 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else if (label) { // move out of sight
11703 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && label.hide();
11704 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11705  
11706 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // chainable
11707 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && return plotLine;
11708 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
11709  
11710 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
11711 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Render and align label for plot line or band.
11712 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
11713 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && renderLabel: function(optionsLabel, path, isBand, zIndex) {
11714 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var plotLine = this,
11715 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && label = plotLine.label,
11716 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && renderer = plotLine.axis.chart.renderer,
11717 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && attribs,
11718 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && xs,
11719 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ys,
11720 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && x,
11721 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && y;
11722  
11723 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // add the SVG element
11724 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!label) {
11725 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && attribs = {
11726 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && align: optionsLabel.textAlign || optionsLabel.align,
11727 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && rotation: optionsLabel.rotation,
11728 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 'class': 'highcharts-plot-' + (isBand ? 'band' : 'line') + '-label ' + (optionsLabel.className || '')
11729 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && };
11730  
11731 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && attribs.zIndex = zIndex;
11732  
11733 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && plotLine.label = label = renderer.text(
11734 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && optionsLabel.text,
11735 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 0,
11736 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 0,
11737 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && optionsLabel.useHTML
11738 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && )
11739 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .attr(attribs)
11740 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .add();
11741  
11742  
11743 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && label.css(optionsLabel.style);
11744  
11745 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11746  
11747 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // get the bounding box and align the label
11748 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // #3000 changed to better handle choice between plotband or plotline
11749 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && xs = [path[1], path[4], (isBand ? path[6] : path[1])];
11750 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ys = [path[2], path[5], (isBand ? path[7] : path[2])];
11751 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && x = arrayMin(xs);
11752 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && y = arrayMin(ys);
11753  
11754 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && label.align(optionsLabel, false, {
11755 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && x: x,
11756 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && y: y,
11757 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && width: arrayMax(xs) - x,
11758 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && height: arrayMax(ys) - y
11759 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11760 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && label.show();
11761 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
11762  
11763 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
11764 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Remove the plot line or band
11765 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
11766 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && destroy: function() {
11767 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // remove it from the lookup
11768 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && erase(this.axis.plotLinesAndBands, this);
11769  
11770 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && delete this.axis;
11771 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && destroyObjectProperties(this);
11772 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11773 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && };
11774  
11775 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
11776 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Object with members for extending the Axis prototype
11777 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @todo Extend directly instead of adding object to Highcharts first
11778 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
11779  
11780 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && H.extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
11781  
11782 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
11783 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Create the path for a plot band
11784 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
11785 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && getPlotBandPath: function(from, to) {
11786 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var toPath = this.getPlotLinePath(to, null, null, true),
11787 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && path = this.getPlotLinePath(from, null, null, true),
11788 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // #4964 check if chart is inverted or plotband is on yAxis
11789 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && horiz = this.horiz,
11790 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && plus = 1,
11791 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && outside =
11792 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && (from < this.min && to < this.min) ||
11793 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && (from > this.max && to > this.max);
11794  
11795 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (path && toPath) {
11796  
11797 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Flat paths don't need labels (#3836)
11798 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (outside) {
11799 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && path.flat = path.toString() === toPath.toString();
11800 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && plus = 0;
11801 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11802  
11803 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Add 1 pixel, when coordinates are the same
11804 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && path.push(
11805 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && horiz && toPath[4] === path[4] ? toPath[4] + plus : toPath[4], !horiz && toPath[5] === path[5] ? toPath[5] + plus : toPath[5],
11806 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && horiz && toPath[1] === path[1] ? toPath[1] + plus : toPath[1], !horiz && toPath[2] === path[2] ? toPath[2] + plus : toPath[2]
11807 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && );
11808 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else { // outside the axis area
11809 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && path = null;
11810 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11811  
11812 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && return path;
11813 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
11814  
11815 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
11816 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Add a plot band after render time.
11817 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && *
11818 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @param {AxisPlotBandsOptions} options
11819 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * A configuration object for the plot band, as defined in {@link
11820 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * https://api.highcharts.com/highcharts/xAxis.plotBands|
11821 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * xAxis.plotBands}.
11822 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @return {Object}
11823 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * The added plot band.
11824 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @sample highcharts/members/axis-addplotband/
11825 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Toggle the plot band from a button
11826 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
11827 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && addPlotBand: function(options) {
11828 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && return this.addPlotBandOrLine(options, 'plotBands');
11829 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
11830  
11831 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
11832 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Add a plot line after render time.
11833 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && *
11834 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @param {AxisPlotLinesOptions} options
11835 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * A configuration object for the plot line, as defined in {@link
11836 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * https://api.highcharts.com/highcharts/xAxis.plotLines|
11837 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * xAxis.plotLines}.
11838 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @return {Object}
11839 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * The added plot line.
11840 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @sample highcharts/members/axis-addplotline/
11841 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Toggle the plot line from a button
11842 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
11843 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && addPlotLine: function(options) {
11844 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && return this.addPlotBandOrLine(options, 'plotLines');
11845 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
11846  
11847 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
11848 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Add a plot band or plot line after render time. Called from addPlotBand
11849 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * and addPlotLine internally.
11850 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && *
11851 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @private
11852 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @param options {AxisPlotLinesOptions|AxisPlotBandsOptions}
11853 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * The plotBand or plotLine configuration object.
11854 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
11855 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && addPlotBandOrLine: function(options, coll) {
11856 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var obj = new H.PlotLineOrBand(this, options).render(),
11857 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && userOptions = this.userOptions;
11858  
11859 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (obj) { // #2189
11860 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Add it to the user options for exporting and Axis.update
11861 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (coll) {
11862 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && userOptions[coll] = userOptions[coll] || [];
11863 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && userOptions[coll].push(options);
11864 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11865 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.plotLinesAndBands.push(obj);
11866 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11867  
11868 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && return obj;
11869 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
11870  
11871 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
11872 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Remove a plot band or plot line from the chart by id. Called internally
11873 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * from `removePlotBand` and `removePlotLine`.
11874 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && *
11875 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @private
11876 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @param {String} id
11877 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
11878 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && removePlotBandOrLine: function(id) {
11879 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var plotLinesAndBands = this.plotLinesAndBands,
11880 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && options = this.options,
11881 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && userOptions = this.userOptions,
11882 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && i = plotLinesAndBands.length;
11883 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && while (i--) {
11884 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (plotLinesAndBands[i].id === id) {
11885 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && plotLinesAndBands[i].destroy();
11886 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11887 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11888 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && each([
11889 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && options.plotLines || [],
11890 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && userOptions.plotLines || [],
11891 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && options.plotBands || [],
11892 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && userOptions.plotBands || []
11893 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ], function(arr) {
11894 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && i = arr.length;
11895 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && while (i--) {
11896 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (arr[i].id === id) {
11897 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && erase(arr, arr[i]);
11898 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11899 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11900 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11901 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
11902  
11903 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
11904 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Remove a plot band by its id.
11905 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && *
11906 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @param {String} id
11907 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * The plot band's `id` as given in the original configuration
11908 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * object or in the `addPlotBand` option.
11909 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @sample highcharts/members/axis-removeplotband/
11910 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Remove plot band by id
11911 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @sample highcharts/members/axis-addplotband/
11912 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Toggle the plot band from a button
11913 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
11914 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && removePlotBand: function(id) {
11915 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.removePlotBandOrLine(id);
11916 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
11917  
11918 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
11919 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Remove a plot line by its id.
11920 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @param {String} id
11921 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * The plot line's `id` as given in the original configuration
11922 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * object or in the `addPlotLine` option.
11923 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @sample highcharts/xaxis/plotlines-id/
11924 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Remove plot line by id
11925 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @sample highcharts/members/axis-addplotline/
11926 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Toggle the plot line from a button
11927 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
11928 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && removePlotLine: function(id) {
11929 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.removePlotBandOrLine(id);
11930 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
11931 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
11932  
11933 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }(Highcharts, Axis));
11934 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && (function(H) {
11935 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
11936 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * (c) 2010-2017 Torstein Honsi
11937 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && *
11938 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * License: www.highcharts.com/license
11939 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
11940 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var dateFormat = H.dateFormat,
11941 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && each = H.each,
11942 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && extend = H.extend,
11943 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && format = H.format,
11944 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && isNumber = H.isNumber,
11945 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && map = H.map,
11946 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && merge = H.merge,
11947 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && pick = H.pick,
11948 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && splat = H.splat,
11949 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && syncTimeout = H.syncTimeout,
11950 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && timeUnits = H.timeUnits;
11951 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
11952 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * The tooltip object
11953 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @param {Object} chart The chart instance
11954 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @param {Object} options Tooltip options
11955 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
11956 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && H.Tooltip = function() {
11957 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.init.apply(this, arguments);
11958 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && };
11959  
11960 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && H.Tooltip.prototype = {
11961  
11962 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && init: function(chart, options) {
11963  
11964 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Save the chart and options
11965 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.chart = chart;
11966 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.options = options;
11967  
11968 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Keep track of the current series
11969 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && //this.currentSeries = undefined;
11970  
11971 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // List of crosshairs
11972 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.crosshairs = [];
11973  
11974 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Current values of x and y when animating
11975 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.now = {
11976 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && x: 0,
11977 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && y: 0
11978 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && };
11979  
11980 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // The tooltip is initially hidden
11981 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.isHidden = true;
11982  
11983  
11984  
11985 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Public property for getting the shared state.
11986 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.split = options.split && !chart.inverted;
11987 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.shared = options.shared || this.split;
11988  
11989 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
11990  
11991 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
11992 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Destroy the single tooltips in a split tooltip.
11993 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * If the tooltip is active then it is not destroyed, unless forced to.
11994 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @param {boolean} force Force destroy all tooltips.
11995 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @return {undefined}
11996 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
11997 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && cleanSplit: function(force) {
11998 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && each(this.chart.series, function(series) {
11999 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var tt = series && series.tt;
12000 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (tt) {
12001 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!tt.isActive || force) {
12002 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && series.tt = tt.destroy();
12003 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else {
12004 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && tt.isActive = false;
12005 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
12006 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
12007 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
12008 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
12009  
12010  
12011  
12012  
12013 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
12014 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Create the Tooltip label element if it doesn't exist, then return the
12015 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * label.
12016 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
12017 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && getLabel: function() {
12018  
12019 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var renderer = this.chart.renderer,
12020 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && options = this.options;
12021  
12022 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!this.label) {
12023 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Create the label
12024 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (this.split) {
12025 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.label = renderer.g('tooltip');
12026 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && } else {
12027 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.label = renderer.label(
12028 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && '',
12029 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 0,
12030 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 0,
12031 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && options.shape || 'callout',
12032 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && null,
12033 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && null,
12034 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && options.useHTML,
12035 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && null,
12036 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 'tooltip'
12037 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && )
12038 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .attr({
12039 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && padding: options.padding,
12040 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && r: options.borderRadius
12041 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
12042  
12043  
12044 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.label
12045 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .attr({
12046 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 'fill': options.backgroundColor,
12047 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && 'stroke-width': options.borderWidth
12048 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && })
12049 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // #2301, #2657
12050 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .css(options.style)
12051 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .shadow(options.shadow);
12052  
12053 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
12054  
12055  
12056  
12057 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.label
12058 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .attr({
12059 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && zIndex: 8
12060 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && })
12061 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && .add();
12062 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
12063 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && return this.label;
12064 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
12065  
12066 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && update: function(options) {
12067 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.destroy();
12068 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Update user options (#6218)
12069 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && merge(true, this.chart.options.tooltip.userOptions, options);
12070 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.init(this.chart, merge(true, this.options, options));
12071 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
12072  
12073 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
12074 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Destroy the tooltip and its elements.
12075 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
12076 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && destroy: function() {
12077 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Destroy and clear local variables
12078 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (this.label) {
12079 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.label = this.label.destroy();
12080 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
12081 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (this.split && this.tt) {
12082 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.cleanSplit(this.chart, true);
12083 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.tt = this.tt.destroy();
12084 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
12085 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && clearTimeout(this.hideTimer);
12086 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && clearTimeout(this.tooltipTimeout);
12087 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
12088  
12089 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
12090 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Provide a soft movement for the tooltip
12091 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && *
12092 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @param {Number} x
12093 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @param {Number} y
12094 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * @private
12095 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
12096 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && move: function(x, y, anchorX, anchorY) {
12097 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var tooltip = this,
12098 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && now = tooltip.now,
12099 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && animate = tooltip.options.animation !== false && !tooltip.isHidden &&
12100 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // When we get close to the target position, abort animation and land on the right place (#3056)
12101 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && (Math.abs(x - now.x) > 1 || Math.abs(y - now.y) > 1),
12102 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && skipAnchor = tooltip.followPointer || tooltip.len > 1;
12103  
12104 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Get intermediate values for animation
12105 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && extend(now, {
12106 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && x: animate ? (2 * now.x + x) / 3 : x,
12107 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && y: animate ? (now.y + y) / 2 : y,
12108 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && anchorX: skipAnchor ? undefined : animate ? (2 * now.anchorX + anchorX) / 3 : anchorX,
12109 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && anchorY: skipAnchor ? undefined : animate ? (now.anchorY + anchorY) / 2 : anchorY
12110 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
12111  
12112 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Move to the intermediate value
12113 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && tooltip.getLabel().attr(now);
12114  
12115  
12116 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Run on next tick of the mouse tracker
12117 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (animate) {
12118  
12119 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Never allow two timeouts
12120 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && clearTimeout(this.tooltipTimeout);
12121  
12122 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Set the fixed interval ticking for the smooth tooltip
12123 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.tooltipTimeout = setTimeout(function() {
12124 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // The interval function may still be running during destroy,
12125 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // so check that the chart is really there before calling.
12126 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (tooltip) {
12127 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && tooltip.move(x, y, anchorX, anchorY);
12128 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
12129 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }, 32);
12130  
12131 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
12132 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
12133  
12134 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
12135 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Hide the tooltip
12136 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
12137 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && hide: function(delay) {
12138 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var tooltip = this;
12139 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && clearTimeout(this.hideTimer); // disallow duplicate timers (#1728, #1766)
12140 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && delay = pick(delay, this.options.hideDelay, 500);
12141 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!this.isHidden) {
12142 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.hideTimer = syncTimeout(function() {
12143 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && tooltip.getLabel()[delay ? 'fadeOut' : 'hide']();
12144 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && tooltip.isHidden = true;
12145 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }, delay);
12146 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
12147 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
12148  
12149 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
12150 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Extendable method to get the anchor position of the tooltip
12151 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * from a point or set of points
12152 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
12153 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && getAnchor: function(points, mouseEvent) {
12154 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var ret,
12155 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && chart = this.chart,
12156 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && inverted = chart.inverted,
12157 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && plotTop = chart.plotTop,
12158 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && plotLeft = chart.plotLeft,
12159 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && plotX = 0,
12160 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && plotY = 0,
12161 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && yAxis,
12162 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && xAxis;
12163  
12164 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && points = splat(points);
12165  
12166 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // Pie uses a special tooltipPos
12167 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ret = points[0].tooltipPos;
12168  
12169 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // When tooltip follows mouse, relate the position to the mouse
12170 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (this.followPointer && mouseEvent) {
12171 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (mouseEvent.chartX === undefined) {
12172 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && mouseEvent = chart.pointer.normalize(mouseEvent);
12173 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
12174 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ret = [
12175 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && mouseEvent.chartX - chart.plotLeft,
12176 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && mouseEvent.chartY - plotTop
12177 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ];
12178 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
12179 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // When shared, use the average position
12180 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && if (!ret) {
12181 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && each(points, function(point) {
12182 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && yAxis = point.series.yAxis;
12183 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && xAxis = point.series.xAxis;
12184 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && plotX += point.plotX + (!inverted && xAxis ? xAxis.left - plotLeft : 0);
12185 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && plotY += (point.plotLow ? (point.plotLow + point.plotHigh) / 2 : point.plotY) +
12186 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && (!inverted && yAxis ? yAxis.top - plotTop : 0); // #1151
12187 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && });
12188  
12189 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && plotX /= points.length;
12190 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && plotY /= points.length;
12191  
12192 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ret = [
12193 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && inverted ? chart.plotWidth - plotY : plotX,
12194 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && this.shared && !inverted && points.length > 1 && mouseEvent ?
12195 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && mouseEvent.chartY - plotTop : // place shared tooltip next to the mouse (#424)
12196 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && inverted ? chart.plotHeight - plotX : plotY
12197 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ];
12198 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && }
12199  
12200 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && return map(ret, Math.round);
12201 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && },
12202  
12203 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
12204 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Place the tooltip in a chart without spilling over
12205 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * and not covering the point it self.
12206 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
12207 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && getPosition: function(boxWidth, boxHeight, point) {
12208  
12209 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var chart = this.chart,
12210 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && distance = this.distance,
12211 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ret = {},
12212 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && h = point.h || 0, // #4117
12213 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && swapped,
12214 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && first = ['y', chart.chartHeight, boxHeight,
12215 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && point.plotY + chart.plotTop, chart.plotTop,
12216 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && chart.plotTop + chart.plotHeight
12217 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ],
12218 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && second = ['x', chart.chartWidth, boxWidth,
12219 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && point.plotX + chart.plotLeft, chart.plotLeft,
12220 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && chart.plotLeft + chart.plotWidth
12221 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && ],
12222 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && // The far side is right or bottom
12223 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && preferFarSide = !this.followPointer && pick(point.ttBelow, !chart.inverted === !!point.negative), // #4984
12224 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && /**
12225 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * Handle the preferred dimension. When the preferred dimension is tooltip
12226 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && * on top or bottom of the point, it will look for space there.
12227 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && */
12228 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && firstDimension = function(dim, outerSize, innerSize, point, min, max) {
12229 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 && var roomLeft = innerSize < point - distance,
12230 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance, roomRight = point + distance + innerSize < outerSize,
12231 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize, alignedLeft = point - distance - innerSize,
12232 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize, alignedRight = point + distance;
12233  
12234 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize, if (preferFarSide && roomRight) {
12235 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize, ret[dim] = alignedRight;
12236 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize, } else if (!preferFarSide && roomLeft) {
12237 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize, ret[dim] = alignedLeft;
12238 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize, } else if (roomLeft) {
12239 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize, ret[dim] = Math.min(max - innerSize, alignedLeft - h < 0 ? alignedLeft : alignedLeft - h);
12240 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h); } else if (roomRight) {
12241 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h); ret[dim] = Math.max(
12242 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h); min,
12243 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h); alignedRight + h + innerSize > outerSize ?
12244 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h); alignedRight :
12245 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h); alignedRight + h
12246 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h); );
12247 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h); } else {
12248 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h); return false;
12249 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h); }
12250 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h); },
12251 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h); /**
12252 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h); * Handle the secondary dimension. If the preferred dimension is tooltip
12253 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h); * on top or bottom of the point, the second dimension is to align the tooltip
12254 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h); * above the point, trying to align center but allowing left or right
12255 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h); * align within the chart box.
12256 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h); */
12257 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h); secondDimension = function(dim, outerSize, innerSize, point) {
12258 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h); var retVal;
12259  
12260 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h); // Too close to the edge, return false and swap dimensions
12261 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h); if (point < distance || point > outerSize - distance) {
12262 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > retVal = false;
12263 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > // Align left/top
12264 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > } else if (point < innerSize / 2) {
12265 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > ret[dim] = 1;
12266 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > // Align right/bottom
12267 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > } else if (point > outerSize - innerSize / 2) {
12268 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > ret[dim] = outerSize - innerSize - 2;
12269 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > // Align center
12270 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > } else {
12271 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > ret[dim] = point - innerSize / 2;
12272 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > }
12273 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > return retVal;
12274 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > },
12275 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > /**
12276 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > * Swap the dimensions
12277 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > */
12278 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > swap = function(count) {
12279 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > var temp = first;
12280 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > first = second;
12281 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > second = temp;
12282 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > swapped = count;
12283 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > },
12284 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > run = function() {
12285 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > if (firstDimension.apply(0, first) !== false) {
12286 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > if (secondDimension.apply(0, second) === false && !swapped) {
12287 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > swap(true);
12288 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > run();
12289 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > }
12290 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > } else if (!swapped) {
12291 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > swap(true);
12292 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > run();
12293 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > } else {
12294 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > ret.x = ret.y = 0;
12295 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > }
12296 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > };
12297  
12298 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > // Under these conditions, prefer the tooltip on the side of the point
12299 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > if (chart.inverted || this.len > 1) {
12300 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > swap();
12301 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > }
12302 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > run();
12303  
12304 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > return ret;
12305  
12306 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > },
12307  
12308 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > /**
12309 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > * In case no user defined formatter is given, this will be used. Note that the context
12310 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > * here is an object holding point, series, x, y etc.
12311 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > *
12312 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > * @returns {String|Array<String>}
12313 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > */
12314 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > defaultFormatter: function(tooltip) {
12315 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > var items = this.points || splat(this),
12316 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > s;
12317  
12318 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > // Build the header
12319 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > s = [tooltip.tooltipFooterHeaderFormatter(items[0])];
12320  
12321 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > // build the values
12322 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > s = s.concat(tooltip.bodyFormatter(items));
12323  
12324 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > // footer
12325 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > s.push(tooltip.tooltipFooterHeaderFormatter(items[0], true));
12326  
12327 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > return s;
12328 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > },
12329  
12330 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > /**
12331 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > * Refresh the tooltip's text and position.
12332 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > * @param {Object|Array} pointOrPoints Rither a point or an array of points
12333 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > */
12334 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > refresh: function(pointOrPoints, mouseEvent) {
12335 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > var tooltip = this,
12336 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > label,
12337 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > options = tooltip.options,
12338 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > x,
12339 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > y,
12340 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > point = pointOrPoints,
12341 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > anchor,
12342 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > textConfig = {},
12343 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > text,
12344 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > pointConfig = [],
12345 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > formatter = options.formatter || tooltip.defaultFormatter,
12346 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > shared = tooltip.shared,
12347 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > currentSeries;
12348  
12349 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > clearTimeout(this.hideTimer);
12350  
12351 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > // get the reference point coordinates (pie charts use tooltipPos)
12352 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > tooltip.followPointer = splat(point)[0].series.tooltipOptions.followPointer;
12353 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > anchor = tooltip.getAnchor(point, mouseEvent);
12354 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > x = anchor[0];
12355 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > y = anchor[1];
12356  
12357 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > // shared tooltip, array is sent over
12358 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > if (shared && !(point.series && point.series.noSharedTooltip)) {
12359 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > each(point, function(item) {
12360 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > item.setState('hover');
12361  
12362 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > pointConfig.push(item.getLabelConfig());
12363 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > });
12364  
12365 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > textConfig = {
12366 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > x: point[0].category,
12367 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > y: point[0].y
12368 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > };
12369 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > textConfig.points = pointConfig;
12370 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > point = point[0];
12371  
12372 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > // single point tooltip
12373 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > } else {
12374 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > textConfig = point.getLabelConfig();
12375 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > }
12376 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > this.len = pointConfig.length; // #6128
12377 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > text = formatter.call(textConfig, tooltip);
12378  
12379 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > // register the current series
12380 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > currentSeries = point.series;
12381 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > this.distance = pick(currentSeries.tooltipOptions.distance, 16);
12382  
12383 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > // update the inner HTML
12384 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > if (text === false) {
12385 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > this.hide();
12386 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > } else {
12387  
12388 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > label = tooltip.getLabel();
12389  
12390 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > // show it
12391 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > if (tooltip.isHidden) {
12392 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > label.attr({
12393 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > opacity: 1
12394 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > }).show();
12395 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > }
12396  
12397 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > // update text
12398 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > if (tooltip.split) {
12399 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > this.renderSplit(text, pointOrPoints);
12400 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > } else {
12401  
12402 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > // Prevent the tooltip from flowing over the chart box (#6659)
12403  
12404 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > if (!options.style.width) {
12405  
12406 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > label.css({
12407 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > width: this.chart.spacingBox.width
12408 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > });
12409  
12410 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > }
12411  
12412  
12413 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > label.attr({
12414 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > text: text && text.join ? text.join('') : text
12415 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > });
12416  
12417 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > // Set the stroke color of the box to reflect the point
12418 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > label.removeClass(/highcharts-color-[\d]+/g)
12419 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > .addClass('highcharts-color-' + pick(point.colorIndex, currentSeries.colorIndex));
12420  
12421  
12422 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > label.attr({
12423 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > stroke: options.borderColor || point.color || currentSeries.color || '#666666'
12424 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > });
12425  
12426  
12427 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > tooltip.updatePosition({
12428 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > plotX: x,
12429 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > plotY: y,
12430 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > negative: point.negative,
12431 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > ttBelow: point.ttBelow,
12432 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > h: anchor[2] || 0
12433 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > });
12434 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > }
12435  
12436 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > this.isHidden = false;
12437 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > }
12438 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > },
12439  
12440 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > /**
12441 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > * Render the split tooltip. Loops over each point's text and adds
12442 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > * a label next to the point, then uses the distribute function to
12443 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > * find best non-overlapping positions.
12444 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > */
12445 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > renderSplit: function(labels, points) {
12446 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > var tooltip = this,
12447 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > boxes = [],
12448 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > chart = this.chart,
12449 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > ren = chart.renderer,
12450 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > rightAligned = true,
12451 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > options = this.options,
12452 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > headerHeight,
12453 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > tooltipLabel = this.getLabel();
12454  
12455 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > // Create the individual labels for header and points, ignore footer
12456 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > each(labels.slice(0, points.length + 1), function(str, i) {
12457 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > var point = points[i - 1] ||
12458 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > // Item 0 is the header. Instead of this, we could also use the crosshair label
12459 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > {
12460 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > isHeader: true,
12461 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > plotX: points[0].plotX
12462 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > },
12463 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > owner = point.series || tooltip,
12464 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > tt = owner.tt,
12465 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > series = point.series || {},
12466 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > colorClass = 'highcharts-color-' + pick(point.colorIndex, series.colorIndex, 'none'),
12467 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > target,
12468 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > x,
12469 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > bBox,
12470 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > boxWidth;
12471  
12472 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > // Store the tooltip referance on the series
12473 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > if (!tt) {
12474 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > owner.tt = tt = ren.label(null, null, null, 'callout')
12475 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > .addClass('highcharts-tooltip-box ' + colorClass)
12476 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > .attr({
12477 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > 'padding': options.padding,
12478 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > 'r': options.borderRadius,
12479  
12480 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > 'fill': options.backgroundColor,
12481 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > 'stroke': point.color || series.color || '#333333',
12482 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > 'stroke-width': options.borderWidth
12483  
12484 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > })
12485 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > .add(tooltipLabel);
12486 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > }
12487  
12488 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > tt.isActive = true;
12489 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > tt.attr({
12490 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > text: str
12491 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > });
12492  
12493 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > tt.css(options.style);
12494  
12495  
12496 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > // Get X position now, so we can move all to the other side in case of overflow
12497 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > bBox = tt.getBBox();
12498 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > boxWidth = bBox.width + tt.strokeWidth();
12499 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > if (point.isHeader) {
12500 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > headerHeight = bBox.height;
12501 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > x = Math.max(
12502 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > 0, // No left overflow
12503 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > Math.min(
12504 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > point.plotX + chart.plotLeft - boxWidth / 2,
12505 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > chart.chartWidth - boxWidth // No right overflow (#5794)
12506 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > )
12507 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > );
12508 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > } else {
12509 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > x = point.plotX + chart.plotLeft - pick(options.distance, 16) -
12510 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > boxWidth;
12511 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > }
12512  
12513  
12514 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > // If overflow left, we don't use this x in the next loop
12515 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point > if (x < 0) {
12516 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { rightAligned = false;
12517 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12518  
12519 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Prepare for distribution
12520 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { target = (point.series && point.series.yAxis && point.series.yAxis.pos) + (point.plotY || 0);
12521 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { target -= chart.plotTop;
12522 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { boxes.push({
12523 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { target: point.isHeader ? chart.plotHeight + headerHeight : target,
12524 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { rank: point.isHeader ? 1 : 0,
12525 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { size: owner.tt.getBBox().height + 1,
12526 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { point: point,
12527 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { x: x,
12528 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { tt: tt
12529 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
12530 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
12531  
12532 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Clean previous run (for missing points)
12533 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { this.cleanSplit();
12534  
12535 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Distribute and put in place
12536 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { H.distribute(boxes, chart.plotHeight + headerHeight);
12537 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { each(boxes, function(box) {
12538 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var point = box.point,
12539 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { series = point.series;
12540  
12541 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Put the label in place
12542 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { box.tt.attr({
12543 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { visibility: box.pos === undefined ? 'hidden' : 'inherit',
12544 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { x: (rightAligned || point.isHeader ?
12545 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { box.x :
12546 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { point.plotX + chart.plotLeft + pick(options.distance, 16)),
12547 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { y: box.pos + chart.plotTop,
12548 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { anchorX: point.isHeader ?
12549 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { point.plotX + chart.plotLeft : point.plotX + series.xAxis.pos,
12550 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { anchorY: point.isHeader ?
12551 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { box.pos + chart.plotTop - 15 : point.plotY + series.yAxis.pos
12552 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
12553 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
12554 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
12555  
12556 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
12557 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * Find the new position and perform the move
12558 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
12559 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { updatePosition: function(point) {
12560 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var chart = this.chart,
12561 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { label = this.getLabel(),
12562 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { pos = (this.options.positioner || this.getPosition).call(
12563 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { this,
12564 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { label.width,
12565 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { label.height,
12566 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { point
12567 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { );
12568  
12569 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // do the move
12570 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { this.move(
12571 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { Math.round(pos.x),
12572 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { Math.round(pos.y || 0), // can be undefined (#3977)
12573 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { point.plotX + chart.plotLeft,
12574 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { point.plotY + chart.plotTop
12575 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { );
12576 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
12577  
12578 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
12579 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * Get the optimal date format for a point, based on a range.
12580 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * @param {number} range - The time range
12581 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * @param {number|Date} date - The date of the point in question
12582 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * @param {number} startOfWeek - An integer representing the first day of
12583 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * the week, where 0 is Sunday
12584 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * @param {Object} dateTimeLabelFormats - A map of time units to formats
12585 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * @return {string} - the optimal date format for a point
12586 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
12587 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { getDateFormat: function(range, date, startOfWeek, dateTimeLabelFormats) {
12588 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var dateStr = dateFormat('%m-%d %H:%M:%S.%L', date),
12589 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { format,
12590 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { n,
12591 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { blank = '01-01 00:00:00.000',
12592 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { strpos = {
12593 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { millisecond: 15,
12594 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { second: 12,
12595 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { minute: 9,
12596 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { hour: 6,
12597 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { day: 3
12598 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
12599 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { lastN = 'millisecond'; // for sub-millisecond data, #4223
12600 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { for (n in timeUnits) {
12601  
12602 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // If the range is exactly one week and we're looking at a Sunday/Monday, go for the week format
12603 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (range === timeUnits.week && +dateFormat('%w', date) === startOfWeek &&
12604 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { dateStr.substr(6) === blank.substr(6)) {
12605 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { n = 'week';
12606 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { break;
12607 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12608  
12609 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // The first format that is too great for the range
12610 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (timeUnits[n] > range) {
12611 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { n = lastN;
12612 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { break;
12613 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12614  
12615 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // If the point is placed every day at 23:59, we need to show
12616 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // the minutes as well. #2637.
12617 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (strpos[n] && dateStr.substr(strpos[n]) !== blank.substr(strpos[n])) {
12618 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { break;
12619 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12620  
12621 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Weeks are outside the hierarchy, only apply them on Mondays/Sundays like in the first condition
12622 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (n !== 'week') {
12623 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { lastN = n;
12624 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12625 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12626  
12627 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (n) {
12628 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { format = dateTimeLabelFormats[n];
12629 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12630  
12631 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { return format;
12632 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
12633  
12634 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
12635 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * Get the best X date format based on the closest point range on the axis.
12636 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
12637 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { getXDateFormat: function(point, options, xAxis) {
12638 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var xDateFormat,
12639 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { dateTimeLabelFormats = options.dateTimeLabelFormats,
12640 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { closestPointRange = xAxis && xAxis.closestPointRange;
12641  
12642 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (closestPointRange) {
12643 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { xDateFormat = this.getDateFormat(
12644 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { closestPointRange,
12645 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { point.x,
12646 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { xAxis.options.startOfWeek,
12647 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { dateTimeLabelFormats
12648 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { );
12649 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { } else {
12650 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { xDateFormat = dateTimeLabelFormats.day;
12651 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12652  
12653 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { return xDateFormat || dateTimeLabelFormats.year; // #2546, 2581
12654 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
12655  
12656 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
12657 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * Format the footer/header of the tooltip
12658 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * #3397: abstraction to enable formatting of footer and header
12659 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
12660 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { tooltipFooterHeaderFormatter: function(labelConfig, isFooter) {
12661 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var footOrHead = isFooter ? 'footer' : 'header',
12662 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { series = labelConfig.series,
12663 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { tooltipOptions = series.tooltipOptions,
12664 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { xDateFormat = tooltipOptions.xDateFormat,
12665 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { xAxis = series.xAxis,
12666 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { isDateTime = xAxis && xAxis.options.type === 'datetime' && isNumber(labelConfig.key),
12667 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { formatString = tooltipOptions[footOrHead + 'Format'];
12668  
12669 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Guess the best date format based on the closest point distance (#568, #3418)
12670 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (isDateTime && !xDateFormat) {
12671 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { xDateFormat = this.getXDateFormat(labelConfig, tooltipOptions, xAxis);
12672 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12673  
12674 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Insert the footer date format if any
12675 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (isDateTime && xDateFormat) {
12676 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { formatString = formatString.replace('{point.key}', '{point.key:' + xDateFormat + '}');
12677 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12678  
12679 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { return format(formatString, {
12680 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { point: labelConfig,
12681 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { series: series
12682 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
12683 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
12684  
12685 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
12686 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * Build the body (lines) of the tooltip by iterating over the items and returning one entry for each item,
12687 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * abstracting this functionality allows to easily overwrite and extend it.
12688 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
12689 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { bodyFormatter: function(items) {
12690 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { return map(items, function(item) {
12691 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var tooltipOptions = item.series.tooltipOptions;
12692 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { return (tooltipOptions.pointFormatter || item.point.tooltipFormatter)
12693 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { .call(item.point, tooltipOptions.pointFormat);
12694 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
12695 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12696  
12697 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { };
12698  
12699 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }(Highcharts));
12700 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { (function(H) {
12701 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
12702 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * (c) 2010-2017 Torstein Honsi
12703 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { *
12704 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * License: www.highcharts.com/license
12705 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
12706 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var addEvent = H.addEvent,
12707 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { attr = H.attr,
12708 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { charts = H.charts,
12709 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { color = H.color,
12710 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { css = H.css,
12711 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { defined = H.defined,
12712 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { doc = H.doc,
12713 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { each = H.each,
12714 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { extend = H.extend,
12715 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { fireEvent = H.fireEvent,
12716 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { offset = H.offset,
12717 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { pick = H.pick,
12718 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { removeEvent = H.removeEvent,
12719 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { splat = H.splat,
12720 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { Tooltip = H.Tooltip,
12721 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { win = H.win;
12722  
12723 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
12724 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * The mouse tracker object. All methods starting with "on" are primary DOM
12725 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * event handlers. Subsequent methods should be named differently from what they
12726 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * are doing.
12727 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { *
12728 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * @constructor Pointer
12729 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * @param {Object} chart The Chart instance
12730 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * @param {Object} options The root options object
12731 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
12732 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { H.Pointer = function(chart, options) {
12733 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { this.init(chart, options);
12734 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { };
12735  
12736 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { H.Pointer.prototype = {
12737 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
12738 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * Initialize Pointer
12739 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
12740 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { init: function(chart, options) {
12741  
12742 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Store references
12743 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { this.options = options;
12744 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { this.chart = chart;
12745  
12746 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Do we need to handle click on a touch device?
12747 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { this.runChartClick = options.chart.events && !!options.chart.events.click;
12748  
12749 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { this.pinchDown = [];
12750 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { this.lastValidTouch = {};
12751  
12752 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (Tooltip && options.tooltip.enabled) {
12753 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chart.tooltip = new Tooltip(chart, options.tooltip);
12754 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { this.followTouchMove = pick(options.tooltip.followTouchMove, true);
12755 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12756  
12757 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { this.setDOMEvents();
12758 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
12759  
12760 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
12761 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * Resolve the zoomType option, this is reset on all touch start and mouse
12762 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * down events.
12763 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
12764 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { zoomOption: function(e) {
12765 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var chart = this.chart,
12766 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { options = chart.options.chart,
12767 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { zoomType = options.zoomType || '',
12768 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { inverted = chart.inverted,
12769 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { zoomX,
12770 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { zoomY;
12771  
12772 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Look for the pinchType option
12773 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (/touch/.test(e.type)) {
12774 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { zoomType = pick(options.pinchType, zoomType);
12775 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12776  
12777 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { this.zoomX = zoomX = /x/.test(zoomType);
12778 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { this.zoomY = zoomY = /y/.test(zoomType);
12779 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { this.zoomHor = (zoomX && !inverted) || (zoomY && inverted);
12780 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { this.zoomVert = (zoomY && !inverted) || (zoomX && inverted);
12781 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { this.hasZoom = zoomX || zoomY;
12782 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
12783  
12784 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
12785 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * @typedef {Object} PointerEvent
12786 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * A native browser mouse or touch event, extended with position
12787 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * information relative to the {@link Chart.container}.
12788 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * @property {Number} chartX
12789 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * The X coordinate of the pointer interaction relative to the
12790 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * chart.
12791 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * @property {Number} chartY
12792 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * The Y coordinate of the pointer interaction relative to the
12793 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * chart.
12794 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { *
12795 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
12796 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
12797 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * Add crossbrowser support for chartX and chartY.
12798 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { *
12799 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * @param {Object} e
12800 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * The event object in standard browsers.
12801 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { *
12802 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * @return {PointerEvent}
12803 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * A browser event with extended properties `chartX` and `chartY`
12804 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
12805 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { normalize: function(e, chartPosition) {
12806 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var chartX,
12807 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chartY,
12808 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { ePos;
12809  
12810 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // IE normalizing
12811 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { e = e || win.event;
12812 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (!e.target) {
12813 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { e.target = e.srcElement;
12814 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12815  
12816 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // iOS (#2757)
12817 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { ePos = e.touches ? (e.touches.length ? e.touches.item(0) : e.changedTouches[0]) : e;
12818  
12819 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Get mouse position
12820 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (!chartPosition) {
12821 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { this.chartPosition = chartPosition = offset(this.chart.container);
12822 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12823  
12824 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // chartX and chartY
12825 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (ePos.pageX === undefined) { // IE < 9. #886.
12826 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chartX = Math.max(e.x, e.clientX - chartPosition.left); // #2005, #2129: the second case is
12827 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // for IE10 quirks mode within framesets
12828 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chartY = e.y;
12829 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { } else {
12830 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chartX = ePos.pageX - chartPosition.left;
12831 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chartY = ePos.pageY - chartPosition.top;
12832 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12833  
12834 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { return extend(e, {
12835 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chartX: Math.round(chartX),
12836 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chartY: Math.round(chartY)
12837 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
12838 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
12839  
12840 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
12841 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * Get the click position in terms of axis values.
12842 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { *
12843 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * @param {Object} e A pointer event
12844 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
12845 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { getCoordinates: function(e) {
12846 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var coordinates = {
12847 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { xAxis: [],
12848 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { yAxis: []
12849 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { };
12850  
12851 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { each(this.chart.axes, function(axis) {
12852 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { coordinates[axis.isXAxis ? 'xAxis' : 'yAxis'].push({
12853 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { axis: axis,
12854 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { value: axis.toValue(e[axis.horiz ? 'chartX' : 'chartY'])
12855 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
12856 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
12857 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { return coordinates;
12858 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
12859 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
12860 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * Collects the points closest to a mouseEvent
12861 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * @param {Array} series Array of series to gather points from
12862 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * @param {Boolean} shared True if shared tooltip, otherwise false
12863 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * @param {Object} e Mouse event which possess a position to compare against
12864 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * @return {Array} KDPoints sorted by distance
12865 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
12866 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { getKDPoints: function(series, shared, e) {
12867 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var kdpoints = [],
12868 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { noSharedTooltip,
12869 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { directTouch,
12870 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { kdpointT,
12871 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { i;
12872  
12873 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Find nearest points on all series
12874 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { each(series, function(s) {
12875 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Skip hidden series
12876 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { noSharedTooltip = s.noSharedTooltip && shared;
12877 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { directTouch = !shared && s.directTouch;
12878 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (s.visible && !directTouch && pick(s.options.enableMouseTracking, true)) { // #3821
12879 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // #3828
12880 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { kdpointT = s.searchPoint(
12881 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { e, !noSharedTooltip && s.options.findNearestPointBy.indexOf('y') < 0
12882 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { );
12883 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (kdpointT && kdpointT.series) { // Point.series becomes null when reset and before redraw (#5197)
12884 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { kdpoints.push(kdpointT);
12885 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12886 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12887 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
12888  
12889 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Sort kdpoints by distance to mouse pointer
12890 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { kdpoints.sort(function(p1, p2) {
12891 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var isCloserX = p1.distX - p2.distX,
12892 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { isCloser = p1.dist - p2.dist,
12893 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { isAbove =
12894 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { (p2.series.group && p2.series.group.zIndex) -
12895 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { (p1.series.group && p1.series.group.zIndex),
12896 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { result;
12897  
12898 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // We have two points which are not in the same place on xAxis and shared tooltip:
12899 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (isCloserX !== 0 && shared) { // #5721
12900 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { result = isCloserX;
12901 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Points are not exactly in the same place on x/yAxis:
12902 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { } else if (isCloser !== 0) {
12903 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { result = isCloser;
12904 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // The same xAxis and yAxis position, sort by z-index:
12905 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { } else if (isAbove !== 0) {
12906 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { result = isAbove;
12907 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // The same zIndex, sort by array index:
12908 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { } else {
12909 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { result = p1.series.index > p2.series.index ? -1 : 1;
12910 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12911 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { return result;
12912 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
12913  
12914 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Remove points with different x-positions, required for shared tooltip and crosshairs (#4645):
12915 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (shared && kdpoints[0] && !kdpoints[0].series.noSharedTooltip) {
12916 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { i = kdpoints.length;
12917 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { while (i--) {
12918 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (kdpoints[i].x !== kdpoints[0].x || kdpoints[i].series.noSharedTooltip) {
12919 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { kdpoints.splice(i, 1);
12920 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12921 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12922 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12923 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { return kdpoints;
12924 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
12925 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { getPointFromEvent: function(e) {
12926 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var target = e.target,
12927 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { point;
12928  
12929 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { while (target && !point) {
12930 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { point = target.point;
12931 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { target = target.parentNode;
12932 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12933 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { return point;
12934 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
12935  
12936 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { getChartCoordinatesFromPoint: function(point, inverted) {
12937 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var series = point.series,
12938 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { xAxis = series.xAxis,
12939 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { yAxis = series.yAxis;
12940  
12941 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (xAxis && yAxis) {
12942 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { return inverted ? {
12943 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chartX: xAxis.len + xAxis.pos - point.clientX,
12944 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chartY: yAxis.len + yAxis.pos - point.plotY
12945 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { } : {
12946 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chartX: point.clientX + xAxis.pos,
12947 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chartY: point.plotY + yAxis.pos
12948 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { };
12949 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
12950 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
12951  
12952 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
12953 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * Calculates what is the current hovered point/points and series.
12954 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { *
12955 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * @private
12956 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { *
12957 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * @param {undefined|Point} existingHoverPoint
12958 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * The point currrently beeing hovered.
12959 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * @param {undefined|Series} existingHoverSeries
12960 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * The series currently beeing hovered.
12961 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * @param {Array<.Series>} series
12962 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * All the series in the chart.
12963 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * @param {boolean} isDirectTouch
12964 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * Is the pointer directly hovering the point.
12965 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * @param {boolean} shared
12966 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * Whether it is a shared tooltip or not.
12967 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * @param {object} coordinates
12968 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * Chart coordinates of the pointer.
12969 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * @param {number} coordinates.chartX
12970 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * @param {number} coordinates.chartY
12971 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { *
12972 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * @return {object}
12973 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * Object containing resulting hover data.
12974 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
12975 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { getHoverData: function(
12976 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { existingHoverPoint,
12977 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { existingHoverSeries,
12978 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { series,
12979 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { isDirectTouch,
12980 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { shared,
12981 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { coordinates
12982 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { ) {
12983 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var hoverPoint = existingHoverPoint,
12984 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { hoverSeries = existingHoverSeries,
12985 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { searchSeries = shared ? series : [hoverSeries],
12986 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { useExisting = !!(isDirectTouch && existingHoverPoint),
12987 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { notSticky = hoverSeries && !hoverSeries.stickyTracking,
12988 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { isHoverPoint = function(point, i) {
12989 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { return i === 0;
12990 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
12991 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { hoverPoints;
12992  
12993 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // If there is a hoverPoint and its series requires direct touch (like
12994 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // columns, #3899), or we're on a noSharedTooltip series among shared
12995 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // tooltip series (#4546), use the existing hoverPoint.
12996 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (useExisting) {
12997 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { isHoverPoint = function(p) {
12998 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { return p === existingHoverPoint;
12999 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { };
13000 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { } else if (notSticky) {
13001 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { isHoverPoint = function(p) {
13002 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { return p.series === hoverSeries;
13003 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { };
13004 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { } else {
13005 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Avoid series with stickyTracking false
13006 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { searchSeries = H.grep(series, function(s) {
13007 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { return s.stickyTracking;
13008 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
13009 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13010 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { hoverPoints = (useExisting && !shared) ?
13011 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Non-shared tooltips with directTouch don't use the k-d-tree
13012 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { [existingHoverPoint] :
13013 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { this.getKDPoints(searchSeries, shared, coordinates);
13014 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { hoverPoint = H.find(hoverPoints, isHoverPoint);
13015 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { hoverSeries = hoverPoint && hoverPoint.series;
13016  
13017 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // In this case we could only look for the hoverPoint in series with
13018 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // stickyTracking, but we should still include all series in the shared
13019 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // tooltip.
13020 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (!useExisting && !notSticky && shared) {
13021 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { hoverPoints = this.getKDPoints(series, shared, coordinates);
13022 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13023 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Keep the order of series in tooltip
13024 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Must be done after assigning of hoverPoint
13025 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { hoverPoints.sort(function(p1, p2) {
13026 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { return p1.series.index - p2.series.index;
13027 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
13028  
13029 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { return {
13030 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { hoverPoint: hoverPoint,
13031 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { hoverSeries: hoverSeries,
13032 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { hoverPoints: hoverPoints
13033 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { };
13034 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
13035 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
13036 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * With line type charts with a single tracker, get the point closest to the mouse.
13037 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * Run Point.onMouseOver and display tooltip for the point or points.
13038 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
13039 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { runPointActions: function(e, p) {
13040 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var pointer = this,
13041 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chart = pointer.chart,
13042 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { series = chart.series,
13043 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { tooltip = chart.tooltip,
13044 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { shared = tooltip ? tooltip.shared : false,
13045 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { hoverPoint = p || chart.hoverPoint,
13046 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { hoverSeries = hoverPoint && hoverPoint.series || chart.hoverSeries,
13047 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // onMouseOver or already hovering a series with directTouch
13048 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { isDirectTouch = !!p || (
13049 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { (hoverSeries && hoverSeries.directTouch) &&
13050 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { pointer.isDirectTouch
13051 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { ),
13052 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { hoverData = this.getHoverData(
13053 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { hoverPoint,
13054 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { hoverSeries,
13055 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { series,
13056 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { isDirectTouch,
13057 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { shared,
13058 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { e
13059 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { ),
13060 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { useSharedTooltip,
13061 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { followPointer,
13062 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { anchor,
13063 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { points;
13064 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Update variables from hoverData.
13065 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { hoverPoint = hoverData.hoverPoint;
13066 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { hoverSeries = hoverData.hoverSeries;
13067 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { followPointer = hoverSeries && hoverSeries.tooltipOptions.followPointer;
13068 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { useSharedTooltip = (
13069 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { shared &&
13070 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { hoverPoint &&
13071 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { !hoverPoint.series.noSharedTooltip
13072 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { );
13073 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { points = (useSharedTooltip ?
13074 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { hoverData.hoverPoints :
13075 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { (hoverPoint ? [hoverPoint] : [])
13076 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { );
13077 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Refresh tooltip for kdpoint if new hover point or tooltip was hidden
13078 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // #3926, #4200
13079 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (
13080 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { hoverPoint &&
13081 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // !(hoverSeries && hoverSeries.directTouch) &&
13082 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { (hoverPoint !== chart.hoverPoint || (tooltip && tooltip.isHidden))
13083 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { ) {
13084 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { each(chart.hoverPoints || [], function(p) {
13085 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (H.inArray(p, points) === -1) {
13086 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { p.setState();
13087 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13088 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
13089 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Do mouseover on all points (#3919, #3985, #4410, #5622)
13090 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { each(points || [], function(p) {
13091 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { p.setState('hover');
13092 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
13093 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // set normal state to previous series
13094 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (chart.hoverSeries !== hoverSeries) {
13095 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { hoverSeries.onMouseOver();
13096 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13097  
13098 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // If tracking is on series in stead of on each point,
13099 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // fire mouseOver on hover point. // #4448
13100 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (chart.hoverPoint) {
13101 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chart.hoverPoint.firePointEvent('mouseOut');
13102 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13103 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { hoverPoint.firePointEvent('mouseOver');
13104 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chart.hoverPoints = points;
13105 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chart.hoverPoint = hoverPoint;
13106 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Draw tooltip if necessary
13107 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (tooltip) {
13108 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { tooltip.refresh(useSharedTooltip ? points : hoverPoint, e);
13109 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13110 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Update positions (regardless of kdpoint or hoverPoint)
13111 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { } else if (followPointer && tooltip && !tooltip.isHidden) {
13112 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { anchor = tooltip.getAnchor([{}], e);
13113 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { tooltip.updatePosition({
13114 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { plotX: anchor[0],
13115 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { plotY: anchor[1]
13116 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
13117 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13118  
13119 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Start the event listener to pick up the tooltip and crosshairs
13120 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (!pointer.unDocMouseMove) {
13121 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { pointer.unDocMouseMove = addEvent(doc, 'mousemove', function(e) {
13122 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var chart = charts[H.hoverChartIndex];
13123 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (chart) {
13124 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chart.pointer.onDocumentMouseMove(e);
13125 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13126 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
13127 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13128  
13129 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Issues related to crosshair #4927, #5269 #5066, #5658
13130 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { each(chart.axes, function drawAxisCrosshair(axis) {
13131 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var snap = pick(axis.crosshair.snap, true);
13132 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (!snap) {
13133 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { axis.drawCrosshair(e);
13134  
13135 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Axis has snapping crosshairs, and one of the hover points belongs
13136 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // to axis
13137 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { } else if (H.find(points, function(p) {
13138 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { return p.series[axis.coll] === axis;
13139 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { })) {
13140 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { axis.drawCrosshair(e, hoverPoint);
13141 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Axis has snapping crosshairs, but no hover point belongs to axis
13142 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { } else {
13143 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { axis.hideCrosshair();
13144 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13145 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
13146 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
13147  
13148 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
13149 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * Reset the tracking by hiding the tooltip, the hover series state and the
13150 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * hover point
13151 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { *
13152 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * @param allowMove {Boolean}
13153 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * Instead of destroying the tooltip altogether, allow moving it if
13154 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * possible
13155 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
13156 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { reset: function(allowMove, delay) {
13157 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var pointer = this,
13158 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chart = pointer.chart,
13159 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { hoverSeries = chart.hoverSeries,
13160 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { hoverPoint = chart.hoverPoint,
13161 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { hoverPoints = chart.hoverPoints,
13162 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { tooltip = chart.tooltip,
13163 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { tooltipPoints = tooltip && tooltip.shared ? hoverPoints : hoverPoint;
13164  
13165 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Check if the points have moved outside the plot area (#1003, #4736, #5101)
13166 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (allowMove && tooltipPoints) {
13167 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { each(splat(tooltipPoints), function(point) {
13168 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (point.series.isCartesian && point.plotX === undefined) {
13169 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { allowMove = false;
13170 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13171 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
13172 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13173  
13174 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Just move the tooltip, #349
13175 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (allowMove) {
13176 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (tooltip && tooltipPoints) {
13177 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { tooltip.refresh(tooltipPoints);
13178 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (hoverPoint) { // #2500
13179 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { hoverPoint.setState(hoverPoint.state, true);
13180 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { each(chart.axes, function(axis) {
13181 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (axis.crosshair) {
13182 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { axis.drawCrosshair(null, hoverPoint);
13183 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13184 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
13185 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13186 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13187  
13188 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Full reset
13189 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { } else {
13190  
13191 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (hoverPoint) {
13192 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { hoverPoint.onMouseOut();
13193 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13194  
13195 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (hoverPoints) {
13196 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { each(hoverPoints, function(point) {
13197 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { point.setState();
13198 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
13199 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13200  
13201 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (hoverSeries) {
13202 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { hoverSeries.onMouseOut();
13203 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13204  
13205 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (tooltip) {
13206 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { tooltip.hide(delay);
13207 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13208  
13209 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (pointer.unDocMouseMove) {
13210 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { pointer.unDocMouseMove = pointer.unDocMouseMove();
13211 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13212  
13213 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Remove crosshairs
13214 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { each(chart.axes, function(axis) {
13215 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { axis.hideCrosshair();
13216 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
13217  
13218 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { pointer.hoverX = chart.hoverPoints = chart.hoverPoint = null;
13219 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13220 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
13221  
13222 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
13223 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * Scale series groups to a certain scale and translation
13224 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
13225 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { scaleGroups: function(attribs, clip) {
13226  
13227 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var chart = this.chart,
13228 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { seriesAttribs;
13229  
13230 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Scale each series
13231 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { each(chart.series, function(series) {
13232 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { seriesAttribs = attribs || series.getPlotBox(); // #1701
13233 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (series.xAxis && series.xAxis.zoomEnabled && series.group) {
13234 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { series.group.attr(seriesAttribs);
13235 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (series.markerGroup) {
13236 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { series.markerGroup.attr(seriesAttribs);
13237 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { series.markerGroup.clip(clip ? chart.clipRect : null);
13238 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13239 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (series.dataLabelsGroup) {
13240 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { series.dataLabelsGroup.attr(seriesAttribs);
13241 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13242 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13243 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
13244  
13245 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Clip
13246 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chart.clipRect.attr(clip || chart.clipBox);
13247 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
13248  
13249 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
13250 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * Start a drag operation
13251 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
13252 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { dragStart: function(e) {
13253 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var chart = this.chart;
13254  
13255 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Record the start position
13256 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chart.mouseIsDown = e.type;
13257 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chart.cancelClick = false;
13258 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chart.mouseDownX = this.mouseDownX = e.chartX;
13259 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chart.mouseDownY = this.mouseDownY = e.chartY;
13260 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
13261  
13262 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
13263 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * Perform a drag operation in response to a mousemove event while the mouse is down
13264 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
13265 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { drag: function(e) {
13266  
13267 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var chart = this.chart,
13268 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chartOptions = chart.options.chart,
13269 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chartX = e.chartX,
13270 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chartY = e.chartY,
13271 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { zoomHor = this.zoomHor,
13272 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { zoomVert = this.zoomVert,
13273 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { plotLeft = chart.plotLeft,
13274 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { plotTop = chart.plotTop,
13275 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { plotWidth = chart.plotWidth,
13276 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { plotHeight = chart.plotHeight,
13277 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { clickedInside,
13278 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { size,
13279 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { selectionMarker = this.selectionMarker,
13280 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { mouseDownX = this.mouseDownX,
13281 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { mouseDownY = this.mouseDownY,
13282 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { panKey = chartOptions.panKey && e[chartOptions.panKey + 'Key'];
13283  
13284 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // If the device supports both touch and mouse (like IE11), and we are touch-dragging
13285 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // inside the plot area, don't handle the mouse event. #4339.
13286 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (selectionMarker && selectionMarker.touch) {
13287 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { return;
13288 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13289  
13290 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // If the mouse is outside the plot area, adjust to cooordinates
13291 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // inside to prevent the selection marker from going outside
13292 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (chartX < plotLeft) {
13293 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chartX = plotLeft;
13294 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { } else if (chartX > plotLeft + plotWidth) {
13295 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chartX = plotLeft + plotWidth;
13296 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13297  
13298 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (chartY < plotTop) {
13299 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chartY = plotTop;
13300 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { } else if (chartY > plotTop + plotHeight) {
13301 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chartY = plotTop + plotHeight;
13302 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13303  
13304 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // determine if the mouse has moved more than 10px
13305 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { this.hasDragged = Math.sqrt(
13306 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { Math.pow(mouseDownX - chartX, 2) +
13307 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { Math.pow(mouseDownY - chartY, 2)
13308 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { );
13309  
13310 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (this.hasDragged > 10) {
13311 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { clickedInside = chart.isInsidePlot(mouseDownX - plotLeft, mouseDownY - plotTop);
13312  
13313 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // make a selection
13314 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (chart.hasCartesianSeries && (this.zoomX || this.zoomY) && clickedInside && !panKey) {
13315 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (!selectionMarker) {
13316 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { this.selectionMarker = selectionMarker = chart.renderer.rect(
13317 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { plotLeft,
13318 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { plotTop,
13319 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { zoomHor ? 1 : plotWidth,
13320 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { zoomVert ? 1 : plotHeight,
13321  
13322 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { )
13323 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { .attr({
13324  
13325 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { fill: chartOptions.selectionMarkerFill || color('#335cad').setOpacity(0.25).get(),
13326  
13327 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { 'class': 'highcharts-selection-marker',
13328 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { 'zIndex': 7
13329 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { })
13330 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { .add();
13331 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13332 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13333  
13334 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // adjust the width of the selection marker
13335 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (selectionMarker && zoomHor) {
13336 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { size = chartX - mouseDownX;
13337 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { selectionMarker.attr({
13338 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { width: Math.abs(size),
13339 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { x: (size > 0 ? 0 : size) + mouseDownX
13340 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
13341 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13342 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // adjust the height of the selection marker
13343 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (selectionMarker && zoomVert) {
13344 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { size = chartY - mouseDownY;
13345 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { selectionMarker.attr({
13346 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { height: Math.abs(size),
13347 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { y: (size > 0 ? 0 : size) + mouseDownY
13348 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
13349 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13350  
13351 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // panning
13352 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (clickedInside && !selectionMarker && chartOptions.panning) {
13353 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chart.pan(e, chartOptions.panning);
13354 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13355 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13356 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
13357  
13358 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
13359 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * On mouse up or touch end across the entire document, drop the selection.
13360 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
13361 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { drop: function(e) {
13362 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var pointer = this,
13363 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chart = this.chart,
13364 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { hasPinched = this.hasPinched;
13365  
13366 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (this.selectionMarker) {
13367 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var selectionData = {
13368 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { originalEvent: e, // #4890
13369 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { xAxis: [],
13370 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { yAxis: []
13371 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
13372 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { selectionBox = this.selectionMarker,
13373 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { selectionLeft = selectionBox.attr ? selectionBox.attr('x') : selectionBox.x,
13374 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { selectionTop = selectionBox.attr ? selectionBox.attr('y') : selectionBox.y,
13375 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { selectionWidth = selectionBox.attr ? selectionBox.attr('width') : selectionBox.width,
13376 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { selectionHeight = selectionBox.attr ? selectionBox.attr('height') : selectionBox.height,
13377 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { runZoom;
13378  
13379 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // a selection has been made
13380 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (this.hasDragged || hasPinched) {
13381  
13382 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // record each axis' min and max
13383 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { each(chart.axes, function(axis) {
13384 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (axis.zoomEnabled && defined(axis.min) && (hasPinched || pointer[{
13385 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { xAxis: 'zoomX',
13386 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { yAxis: 'zoomY'
13387 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }[axis.coll]])) { // #859, #3569
13388 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var horiz = axis.horiz,
13389 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { minPixelPadding = e.type === 'touchend' ? axis.minPixelPadding : 0, // #1207, #3075
13390 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { selectionMin = axis.toValue((horiz ? selectionLeft : selectionTop) + minPixelPadding),
13391 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { selectionMax = axis.toValue((horiz ? selectionLeft + selectionWidth : selectionTop + selectionHeight) - minPixelPadding);
13392  
13393 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { selectionData[axis.coll].push({
13394 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { axis: axis,
13395 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { min: Math.min(selectionMin, selectionMax), // for reversed axes
13396 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { max: Math.max(selectionMin, selectionMax)
13397 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
13398 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { runZoom = true;
13399 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13400 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
13401 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (runZoom) {
13402 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { fireEvent(chart, 'selection', selectionData, function(args) {
13403 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chart.zoom(extend(args, hasPinched ? {
13404 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { animation: false
13405 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { } : null));
13406 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
13407 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13408  
13409 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13410 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { this.selectionMarker = this.selectionMarker.destroy();
13411  
13412 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Reset scaling preview
13413 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (hasPinched) {
13414 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { this.scaleGroups();
13415 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13416 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13417  
13418 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Reset all
13419 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (chart) { // it may be destroyed on mouse up - #877
13420 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { css(chart.container, {
13421 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { cursor: chart._cursor
13422 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
13423 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chart.cancelClick = this.hasDragged > 10; // #370
13424 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chart.mouseIsDown = this.hasDragged = this.hasPinched = false;
13425 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { this.pinchDown = [];
13426 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13427 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
13428  
13429 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { onContainerMouseDown: function(e) {
13430  
13431 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { e = this.normalize(e);
13432  
13433 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { this.zoomOption(e);
13434  
13435 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // issue #295, dragging not always working in Firefox
13436 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (e.preventDefault) {
13437 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { e.preventDefault();
13438 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13439  
13440 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { this.dragStart(e);
13441 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
13442  
13443  
13444  
13445 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { onDocumentMouseUp: function(e) {
13446 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (charts[H.hoverChartIndex]) {
13447 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { charts[H.hoverChartIndex].pointer.drop(e);
13448 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13449 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
13450  
13451 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
13452 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * Special handler for mouse move that will hide the tooltip when the mouse leaves the plotarea.
13453 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * Issue #149 workaround. The mouseleave event does not always fire.
13454 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
13455 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { onDocumentMouseMove: function(e) {
13456 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var chart = this.chart,
13457 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chartPosition = this.chartPosition;
13458  
13459 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { e = this.normalize(e, chartPosition);
13460  
13461 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // If we're outside, hide the tooltip
13462 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (chartPosition && !this.inClass(e.target, 'highcharts-tracker') &&
13463 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { !chart.isInsidePlot(e.chartX - chart.plotLeft, e.chartY - chart.plotTop)) {
13464 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { this.reset();
13465 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13466 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
13467  
13468 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
13469 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * When mouse leaves the container, hide the tooltip.
13470 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
13471 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { onContainerMouseLeave: function(e) {
13472 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var chart = charts[H.hoverChartIndex];
13473 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (chart && (e.relatedTarget || e.toElement)) { // #4886, MS Touch end fires mouseleave but with no related target
13474 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chart.pointer.reset();
13475 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chart.pointer.chartPosition = null; // also reset the chart position, used in #149 fix
13476 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13477 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
13478  
13479 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // The mousemove, touchmove and touchstart event handler
13480 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { onContainerMouseMove: function(e) {
13481  
13482 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var chart = this.chart;
13483  
13484 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (!defined(H.hoverChartIndex) || !charts[H.hoverChartIndex] || !charts[H.hoverChartIndex].mouseIsDown) {
13485 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { H.hoverChartIndex = chart.index;
13486 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13487  
13488 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { e = this.normalize(e);
13489 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { e.returnValue = false; // #2251, #3224
13490  
13491 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (chart.mouseIsDown === 'mousedown') {
13492 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { this.drag(e);
13493 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13494  
13495 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Show the tooltip and run mouse over events (#977)
13496 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if ((this.inClass(e.target, 'highcharts-tracker') ||
13497 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { chart.isInsidePlot(e.chartX - chart.plotLeft, e.chartY - chart.plotTop)) && !chart.openMenu) {
13498 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { this.runPointActions(e);
13499 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13500 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
13501  
13502 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
13503 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * Utility to detect whether an element has, or has a parent with, a specific
13504 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * class name. Used on detection of tracker objects and on deciding whether
13505 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * hovering the tooltip should cause the active series to mouse out.
13506 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
13507 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { inClass: function(element, className) {
13508 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var elemClassName;
13509 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { while (element) {
13510 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { elemClassName = attr(element, 'class');
13511 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (elemClassName) {
13512 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (elemClassName.indexOf(className) !== -1) {
13513 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { return true;
13514 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13515 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (elemClassName.indexOf('highcharts-container') !== -1) {
13516 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { return false;
13517 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13518 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13519 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { element = element.parentNode;
13520 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13521 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
13522  
13523 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { onTrackerMouseOut: function(e) {
13524 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var series = this.chart.hoverSeries,
13525 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { relatedTarget = e.relatedTarget || e.toElement;
13526 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { this.isDirectTouch = false;
13527 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (series && relatedTarget && !series.stickyTracking &&
13528 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { !this.inClass(relatedTarget, 'highcharts-tooltip') &&
13529 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { (!this.inClass(relatedTarget, 'highcharts-series-' + series.index) || // #2499, #4465
13530 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { !this.inClass(relatedTarget, 'highcharts-tracker') // #5553
13531 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { )
13532 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { ) {
13533 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { series.onMouseOut();
13534 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13535 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
13536  
13537 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { onContainerClick: function(e) {
13538 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var chart = this.chart,
13539 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { hoverPoint = chart.hoverPoint,
13540 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { plotLeft = chart.plotLeft,
13541 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { plotTop = chart.plotTop;
13542  
13543 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { e = this.normalize(e);
13544  
13545 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (!chart.cancelClick) {
13546  
13547 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // On tracker click, fire the series and point events. #783, #1583
13548 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (hoverPoint && this.inClass(e.target, 'highcharts-tracker')) {
13549  
13550 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // the series click event
13551 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { fireEvent(hoverPoint.series, 'click', extend(e, {
13552 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { point: hoverPoint
13553 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }));
13554  
13555 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // the point click event
13556 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (chart.hoverPoint) { // it may be destroyed (#1844)
13557 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { hoverPoint.firePointEvent('click', e);
13558 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13559  
13560 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // When clicking outside a tracker, fire a chart event
13561 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { } else {
13562 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { extend(e, this.getCoordinates(e));
13563  
13564 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // fire a click event in the chart
13565 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (chart.isInsidePlot(e.chartX - plotLeft, e.chartY - plotTop)) {
13566 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { fireEvent(chart, 'click', e);
13567 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13568 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13569  
13570  
13571 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13572 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
13573  
13574 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
13575 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * Set the JS DOM events on the container and document. This method should contain
13576 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * a one-to-one assignment between methods and their handlers. Any advanced logic should
13577 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * be moved to the handler reflecting the event's name.
13578 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
13579 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { setDOMEvents: function() {
13580  
13581 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var pointer = this,
13582 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { container = pointer.chart.container;
13583  
13584 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { container.onmousedown = function(e) {
13585 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { pointer.onContainerMouseDown(e);
13586 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { };
13587 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { container.onmousemove = function(e) {
13588 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { pointer.onContainerMouseMove(e);
13589 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { };
13590 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { container.onclick = function(e) {
13591 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { pointer.onContainerClick(e);
13592 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { };
13593 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { addEvent(container, 'mouseleave', pointer.onContainerMouseLeave);
13594 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (H.chartCount === 1) {
13595 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { addEvent(doc, 'mouseup', pointer.onDocumentMouseUp);
13596 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13597 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (H.hasTouch) {
13598 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { container.ontouchstart = function(e) {
13599 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { pointer.onContainerTouchStart(e);
13600 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { };
13601 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { container.ontouchmove = function(e) {
13602 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { pointer.onContainerTouchMove(e);
13603 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { };
13604 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (H.chartCount === 1) {
13605 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { addEvent(doc, 'touchend', pointer.onDocumentTouchEnd);
13606 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13607 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13608  
13609 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
13610  
13611 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
13612 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * Destroys the Pointer object and disconnects DOM events.
13613 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
13614 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { destroy: function() {
13615 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var pointer = this;
13616  
13617 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (pointer.unDocMouseMove) {
13618 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { pointer.unDocMouseMove();
13619 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13620  
13621 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { removeEvent(
13622 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { pointer.chart.container,
13623 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { 'mouseleave',
13624 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { pointer.onContainerMouseLeave
13625 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { );
13626 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (!H.chartCount) {
13627 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { removeEvent(doc, 'mouseup', pointer.onDocumentMouseUp);
13628 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { removeEvent(doc, 'touchend', pointer.onDocumentTouchEnd);
13629 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13630  
13631 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // memory and CPU leak
13632 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { clearInterval(pointer.tooltipTimeout);
13633  
13634 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { H.objectEach(pointer, function(val, prop) {
13635 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { pointer[prop] = null;
13636 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { });
13637 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13638 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { };
13639  
13640 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }(Highcharts));
13641 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { (function(H) {
13642 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
13643 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * (c) 2010-2017 Torstein Honsi
13644 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { *
13645 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * License: www.highcharts.com/license
13646 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
13647 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var charts = H.charts,
13648 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { each = H.each,
13649 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { extend = H.extend,
13650 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { map = H.map,
13651 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { noop = H.noop,
13652 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { pick = H.pick,
13653 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { Pointer = H.Pointer;
13654  
13655 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /* Support for touch devices */
13656 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { extend(Pointer.prototype, /** @lends Pointer.prototype */ {
13657  
13658 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
13659 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * Run translation operations
13660 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
13661 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { pinchTranslate: function(pinchDown, touches, transform, selectionMarker, clip, lastValidTouch) {
13662 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (this.zoomHor) {
13663 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { this.pinchTranslateDirection(true, pinchDown, touches, transform, selectionMarker, clip, lastValidTouch);
13664 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13665 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (this.zoomVert) {
13666 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { this.pinchTranslateDirection(false, pinchDown, touches, transform, selectionMarker, clip, lastValidTouch);
13667 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13668 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { },
13669  
13670 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { /**
13671 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { * Run translation operations for each direction (horizontal and vertical) independently
13672 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { */
13673 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { pinchTranslateDirection: function(horiz, pinchDown, touches, transform,
13674 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { selectionMarker, clip, lastValidTouch, forcedScale) {
13675 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { var chart = this.chart,
13676 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { xy = horiz ? 'x' : 'y',
13677 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { XY = horiz ? 'X' : 'Y',
13678 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { sChartXY = 'chart' + XY,
13679 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { wh = horiz ? 'width' : 'height',
13680 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { plotLeftTop = chart['plot' + (horiz ? 'Left' : 'Top')],
13681 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { selectionWH,
13682 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { selectionXY,
13683 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { clipXY,
13684 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { scale = forcedScale || 1,
13685 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { inverted = chart.inverted,
13686 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { bounds = chart.bounds[horiz ? 'h' : 'v'],
13687 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { singleTouch = pinchDown.length === 1,
13688 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { touch0Start = pinchDown[0][sChartXY],
13689 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { touch0Now = touches[0][sChartXY],
13690 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { touch1Start = !singleTouch && pinchDown[1][sChartXY],
13691 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { touch1Now = !singleTouch && touches[1][sChartXY],
13692 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { outOfBounds,
13693 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { transformScale,
13694 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { scaleKey,
13695 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { setScale = function() {
13696 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Don't zoom if fingers are too close on this axis
13697 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (!singleTouch && Math.abs(touch0Start - touch1Start) > 20) {
13698 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { scale = forcedScale || Math.abs(touch0Now - touch1Now) / Math.abs(touch0Start - touch1Start);
13699 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { }
13700  
13701 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { clipXY = ((plotLeftTop - touch0Now) / scale) + touch0Start;
13702 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { selectionWH = chart['plot' + (horiz ? 'Width' : 'Height')] / scale;
13703 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { };
13704  
13705 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Set the scale, first pass
13706 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { setScale();
13707  
13708 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { selectionXY = clipXY; // the clip position (x or y) is altered if out of bounds, the selection position is not
13709  
13710 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { // Out of bounds
13711 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) { if (selectionXY < bounds.min) {
13712 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { selectionXY = bounds.min;
13713 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { outOfBounds = true;
13714 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } else if (selectionXY + selectionWH > bounds.max) {
13715 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { selectionXY = bounds.max - selectionWH;
13716 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { outOfBounds = true;
13717 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13718  
13719 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Is the chart dragged off its bounds, determined by dataMin and dataMax?
13720 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (outOfBounds) {
13721  
13722 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Modify the touchNow position in order to create an elastic drag movement. This indicates
13723 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // to the user that the chart is responsive but can't be dragged further.
13724 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { touch0Now -= 0.8 * (touch0Now - lastValidTouch[xy][0]);
13725 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!singleTouch) {
13726 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { touch1Now -= 0.8 * (touch1Now - lastValidTouch[xy][1]);
13727 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13728  
13729 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Set the scale, second pass to adapt to the modified touchNow positions
13730 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { setScale();
13731  
13732 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } else {
13733 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { lastValidTouch[xy] = [touch0Now, touch1Now];
13734 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13735  
13736 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Set geometry for clipping, selection and transformation
13737 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!inverted) {
13738 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { clip[xy] = clipXY - plotLeftTop;
13739 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { clip[wh] = selectionWH;
13740 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13741 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { scaleKey = inverted ? (horiz ? 'scaleY' : 'scaleX') : 'scale' + XY;
13742 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { transformScale = inverted ? 1 / scale : scale;
13743  
13744 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { selectionMarker[wh] = selectionWH;
13745 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { selectionMarker[xy] = selectionXY;
13746 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { transform[scaleKey] = scale;
13747 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { transform['translate' + XY] = (transformScale * plotLeftTop) + (touch0Now - (transformScale * touch0Start));
13748 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
13749  
13750 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
13751 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Handle touch events with two touches
13752 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
13753 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pinch: function(e) {
13754  
13755 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var self = this,
13756 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart = self.chart,
13757 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pinchDown = self.pinchDown,
13758 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { touches = e.touches,
13759 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { touchesLength = touches.length,
13760 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { lastValidTouch = self.lastValidTouch,
13761 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { hasZoom = self.hasZoom,
13762 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { selectionMarker = self.selectionMarker,
13763 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { transform = {},
13764 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fireClickEvent = touchesLength === 1 && ((self.inClass(e.target, 'highcharts-tracker') &&
13765 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.runTrackerClick) || self.runChartClick),
13766 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { clip = {};
13767  
13768 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Don't initiate panning until the user has pinched. This prevents us from
13769 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // blocking page scrolling as users scroll down a long page (#4210).
13770 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (touchesLength > 1) {
13771 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { self.initiated = true;
13772 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13773  
13774 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // On touch devices, only proceed to trigger click if a handler is defined
13775 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (hasZoom && self.initiated && !fireClickEvent) {
13776 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { e.preventDefault();
13777 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13778  
13779 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Normalize each touch
13780 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { map(touches, function(e) {
13781 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { return self.normalize(e);
13782 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
13783  
13784 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Register the touch start position
13785 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (e.type === 'touchstart') {
13786 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(touches, function(e, i) {
13787 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pinchDown[i] = {
13788 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chartX: e.chartX,
13789 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chartY: e.chartY
13790 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
13791 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
13792 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { lastValidTouch.x = [pinchDown[0].chartX, pinchDown[1] && pinchDown[1].chartX];
13793 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { lastValidTouch.y = [pinchDown[0].chartY, pinchDown[1] && pinchDown[1].chartY];
13794  
13795 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Identify the data bounds in pixels
13796 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(chart.axes, function(axis) {
13797 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (axis.zoomEnabled) {
13798 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var bounds = chart.bounds[axis.horiz ? 'h' : 'v'],
13799 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { minPixelPadding = axis.minPixelPadding,
13800 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { min = axis.toPixels(pick(axis.options.min, axis.dataMin)),
13801 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { max = axis.toPixels(pick(axis.options.max, axis.dataMax)),
13802 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { absMin = Math.min(min, max),
13803 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { absMax = Math.max(min, max);
13804  
13805 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Store the bounds for use in the touchmove handler
13806 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { bounds.min = Math.min(axis.pos, absMin - minPixelPadding);
13807 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { bounds.max = Math.max(axis.pos + axis.len, absMax + minPixelPadding);
13808 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13809 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
13810 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { self.res = true; // reset on next move
13811  
13812 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Optionally move the tooltip on touchmove
13813 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } else if (self.followTouchMove && touchesLength === 1) {
13814 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.runPointActions(self.normalize(e));
13815  
13816 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Event type is touchmove, handle panning and pinching
13817 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } else if (pinchDown.length) { // can be 0 when releasing, if touchend fires first
13818  
13819  
13820 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Set the marker
13821 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!selectionMarker) {
13822 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { self.selectionMarker = selectionMarker = extend({
13823 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { destroy: noop,
13824 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { touch: true
13825 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }, chart.plotBox);
13826 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13827  
13828 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { self.pinchTranslate(pinchDown, touches, transform, selectionMarker, clip, lastValidTouch);
13829  
13830 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { self.hasPinched = hasZoom;
13831  
13832 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Scale and translate the groups to provide visual feedback during pinching
13833 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { self.scaleGroups(transform, clip);
13834  
13835 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (self.res) {
13836 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { self.res = false;
13837 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.reset(false, 0);
13838 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13839 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13840 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
13841  
13842 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
13843 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * General touch handler shared by touchstart and touchmove.
13844 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
13845 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { touch: function(e, start) {
13846 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var chart = this.chart,
13847 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { hasMoved,
13848 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pinchDown,
13849 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { isInside;
13850  
13851 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (chart.index !== H.hoverChartIndex) {
13852 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.onContainerMouseLeave({
13853 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { relatedTarget: true
13854 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
13855 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13856 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { H.hoverChartIndex = chart.index;
13857  
13858 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (e.touches.length === 1) {
13859  
13860 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { e = this.normalize(e);
13861  
13862 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { isInside = chart.isInsidePlot(
13863 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { e.chartX - chart.plotLeft,
13864 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { e.chartY - chart.plotTop
13865 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
13866 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (isInside && !chart.openMenu) {
13867  
13868 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Run mouse events and display tooltip etc
13869 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (start) {
13870 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.runPointActions(e);
13871 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13872  
13873 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Android fires touchmove events after the touchstart even if the
13874 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // finger hasn't moved, or moved only a pixel or two. In iOS however,
13875 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // the touchmove doesn't fire unless the finger moves more than ~4px.
13876 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // So we emulate this behaviour in Android by checking how much it
13877 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // moved, and cancelling on small distances. #3450.
13878 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (e.type === 'touchmove') {
13879 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pinchDown = this.pinchDown;
13880 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { hasMoved = pinchDown[0] ? Math.sqrt( // #5266
13881 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { Math.pow(pinchDown[0].chartX - e.chartX, 2) +
13882 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { Math.pow(pinchDown[0].chartY - e.chartY, 2)
13883 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ) >= 4 : false;
13884 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13885  
13886 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (pick(hasMoved, true)) {
13887 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.pinch(e);
13888 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13889  
13890 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } else if (start) {
13891 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Hide the tooltip on touching outside the plot area (#1203)
13892 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.reset();
13893 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13894  
13895 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } else if (e.touches.length === 2) {
13896 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.pinch(e);
13897 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13898 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
13899  
13900 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { onContainerTouchStart: function(e) {
13901 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.zoomOption(e);
13902 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.touch(e, true);
13903 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
13904  
13905 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { onContainerTouchMove: function(e) {
13906 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.touch(e);
13907 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
13908  
13909 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { onDocumentTouchEnd: function(e) {
13910 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (charts[H.hoverChartIndex]) {
13911 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { charts[H.hoverChartIndex].pointer.drop(e);
13912 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13913 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13914  
13915 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
13916  
13917 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }(Highcharts));
13918 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (function(H) {
13919 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
13920 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * (c) 2010-2017 Torstein Honsi
13921 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
13922 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * License: www.highcharts.com/license
13923 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
13924 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var addEvent = H.addEvent,
13925 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { charts = H.charts,
13926 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { css = H.css,
13927 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { doc = H.doc,
13928 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { extend = H.extend,
13929 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { hasTouch = H.hasTouch,
13930 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { noop = H.noop,
13931 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { Pointer = H.Pointer,
13932 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { removeEvent = H.removeEvent,
13933 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { win = H.win,
13934 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { wrap = H.wrap;
13935  
13936 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!hasTouch && (win.PointerEvent || win.MSPointerEvent)) {
13937  
13938 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // The touches object keeps track of the points being touched at all times
13939 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var touches = {},
13940 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { hasPointerEvent = !!win.PointerEvent,
13941 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { getWebkitTouches = function() {
13942 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var fake = [];
13943 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fake.item = function(i) {
13944 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { return this[i];
13945 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
13946 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { H.objectEach(touches, function(touch) {
13947 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fake.push({
13948 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pageX: touch.pageX,
13949 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pageY: touch.pageY,
13950 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { target: touch.target
13951 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
13952 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
13953 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { return fake;
13954 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
13955 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { translateMSPointer = function(e, method, wktype, func) {
13956 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var p;
13957 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if ((e.pointerType === 'touch' || e.pointerType === e.MSPOINTER_TYPE_TOUCH) && charts[H.hoverChartIndex]) {
13958 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { func(e);
13959 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { p = charts[H.hoverChartIndex].pointer;
13960 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { p[method]({
13961 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { type: wktype,
13962 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { target: e.currentTarget,
13963 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { preventDefault: noop,
13964 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { touches: getWebkitTouches()
13965 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
13966 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13967 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
13968  
13969 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
13970 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Extend the Pointer prototype with methods for each event handler and more
13971 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
13972 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { extend(Pointer.prototype, /** @lends Pointer.prototype */ {
13973 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { onContainerPointerDown: function(e) {
13974 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { translateMSPointer(e, 'onContainerTouchStart', 'touchstart', function(e) {
13975 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { touches[e.pointerId] = {
13976 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pageX: e.pageX,
13977 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pageY: e.pageY,
13978 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { target: e.currentTarget
13979 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
13980 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
13981 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
13982 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { onContainerPointerMove: function(e) {
13983 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { translateMSPointer(e, 'onContainerTouchMove', 'touchmove', function(e) {
13984 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { touches[e.pointerId] = {
13985 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pageX: e.pageX,
13986 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pageY: e.pageY
13987 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
13988 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!touches[e.pointerId].target) {
13989 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { touches[e.pointerId].target = e.currentTarget;
13990 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
13991 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
13992 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
13993 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { onDocumentPointerUp: function(e) {
13994 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { translateMSPointer(e, 'onDocumentTouchEnd', 'touchend', function(e) {
13995 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { delete touches[e.pointerId];
13996 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
13997 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
13998  
13999 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
14000 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Add or remove the MS Pointer specific events
14001 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
14002 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { batchMSEvents: function(fn) {
14003 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fn(this.chart.container, hasPointerEvent ? 'pointerdown' : 'MSPointerDown', this.onContainerPointerDown);
14004 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fn(this.chart.container, hasPointerEvent ? 'pointermove' : 'MSPointerMove', this.onContainerPointerMove);
14005 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fn(doc, hasPointerEvent ? 'pointerup' : 'MSPointerUp', this.onDocumentPointerUp);
14006 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14007 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14008  
14009 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Disable default IE actions for pinch and such on chart element
14010 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { wrap(Pointer.prototype, 'init', function(proceed, chart, options) {
14011 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { proceed.call(this, chart, options);
14012 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (this.hasZoom) { // #4014
14013 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { css(chart.container, {
14014 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { '-ms-touch-action': 'none',
14015 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'touch-action': 'none'
14016 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14017 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14018 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14019  
14020 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Add IE specific touch events to chart
14021 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { wrap(Pointer.prototype, 'setDOMEvents', function(proceed) {
14022 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { proceed.apply(this);
14023 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (this.hasZoom || this.followTouchMove) {
14024 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.batchMSEvents(addEvent);
14025 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14026 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14027 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Destroy MS events also
14028 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { wrap(Pointer.prototype, 'destroy', function(proceed) {
14029 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.batchMSEvents(removeEvent);
14030 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { proceed.call(this);
14031 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14032 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14033  
14034 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }(Highcharts));
14035 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (function(Highcharts) {
14036 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
14037 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * (c) 2010-2017 Torstein Honsi
14038 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
14039 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * License: www.highcharts.com/license
14040 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
14041 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var H = Highcharts,
14042  
14043 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { addEvent = H.addEvent,
14044 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { css = H.css,
14045 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { discardElement = H.discardElement,
14046 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { defined = H.defined,
14047 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each = H.each,
14048 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { isFirefox = H.isFirefox,
14049 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { marginNames = H.marginNames,
14050 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { merge = H.merge,
14051 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pick = H.pick,
14052 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { setAnimation = H.setAnimation,
14053 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { stableSort = H.stableSort,
14054 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { win = H.win,
14055 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { wrap = H.wrap;
14056  
14057 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
14058 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * The overview of the chart's series. The legend object is instanciated
14059 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * internally in the chart constructor, and available from `chart.legend`. Each
14060 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * chart has only one legend.
14061 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
14062 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @class
14063 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
14064 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { Highcharts.Legend = function(chart, options) {
14065 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.init(chart, options);
14066 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
14067  
14068 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { Highcharts.Legend.prototype = {
14069  
14070 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
14071 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Initialize the legend
14072 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
14073 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { init: function(chart, options) {
14074  
14075 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.chart = chart;
14076  
14077 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.setOptions(options);
14078  
14079 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (options.enabled) {
14080  
14081 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Render it
14082 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.render();
14083  
14084 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // move checkboxes
14085 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { addEvent(this.chart, 'endResize', function() {
14086 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.legend.positionCheckboxes();
14087 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14088 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14089 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
14090  
14091 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { setOptions: function(options) {
14092  
14093 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var padding = pick(options.padding, 8);
14094  
14095 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.options = options;
14096  
14097  
14098 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.itemStyle = options.itemStyle;
14099 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.itemHiddenStyle = merge(this.itemStyle, options.itemHiddenStyle);
14100  
14101 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.itemMarginTop = options.itemMarginTop || 0;
14102 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.padding = padding;
14103 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.initialItemY = padding - 5; // 5 is pixels above the text
14104 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.maxItemWidth = 0;
14105 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.itemHeight = 0;
14106 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.symbolWidth = pick(options.symbolWidth, 16);
14107 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.pages = [];
14108  
14109 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
14110  
14111 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
14112 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Update the legend with new options. Equivalent to running `chart.update`
14113 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * with a legend configuration option.
14114 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {LegendOptions} options
14115 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Legend options.
14116 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Boolean} [redraw=true]
14117 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Whether to redraw the chart.
14118 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
14119 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @sample highcharts/legend/legend-update/
14120 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Legend update
14121 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
14122 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { update: function(options, redraw) {
14123 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var chart = this.chart;
14124  
14125 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.setOptions(merge(true, this.options, options));
14126 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.destroy();
14127 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.isDirtyLegend = chart.isDirtyBox = true;
14128 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (pick(redraw, true)) {
14129 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.redraw();
14130 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14131 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
14132  
14133 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
14134 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Set the colors for the legend item
14135 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Object} item A Series or Point instance
14136 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Object} visible Dimmed or colored
14137 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
14138 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { colorizeItem: function(item, visible) {
14139 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { item.legendGroup[visible ? 'removeClass' : 'addClass'](
14140 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'highcharts-legend-item-hidden'
14141 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
14142  
14143  
14144 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var legend = this,
14145 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options = legend.options,
14146 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legendItem = item.legendItem,
14147 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legendLine = item.legendLine,
14148 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legendSymbol = item.legendSymbol,
14149 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { hiddenColor = legend.itemHiddenStyle.color,
14150 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { textColor = visible ? options.itemStyle.color : hiddenColor,
14151 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { symbolColor = visible ? (item.color || hiddenColor) : hiddenColor,
14152 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { markerOptions = item.options && item.options.marker,
14153 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { symbolAttr = {
14154 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fill: symbolColor
14155 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
14156  
14157 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (legendItem) {
14158 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legendItem.css({
14159 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fill: textColor,
14160 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { color: textColor // #1553, oldIE
14161 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14162 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14163 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (legendLine) {
14164 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legendLine.attr({
14165 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { stroke: symbolColor
14166 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14167 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14168  
14169 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (legendSymbol) {
14170  
14171 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Apply marker options
14172 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (markerOptions && legendSymbol.isMarker) { // #585
14173 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //symbolAttr.stroke = symbolColor;
14174 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { symbolAttr = item.pointAttribs();
14175 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!visible) {
14176 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { H.objectEach(symbolAttr, function(val, key) {
14177 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { symbolAttr[key] = hiddenColor;
14178 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14179 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14180 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14181  
14182 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legendSymbol.attr(symbolAttr);
14183 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14184  
14185 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
14186  
14187 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
14188 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Position the legend item
14189 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Object} item A Series or Point instance
14190 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
14191 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { positionItem: function(item) {
14192 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var legend = this,
14193 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options = legend.options,
14194 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { symbolPadding = options.symbolPadding,
14195 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ltr = !options.rtl,
14196 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legendItemPos = item._legendItemPos,
14197 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { itemX = legendItemPos[0],
14198 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { itemY = legendItemPos[1],
14199 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { checkbox = item.checkbox,
14200 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legendGroup = item.legendGroup;
14201  
14202 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (legendGroup && legendGroup.element) {
14203 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legendGroup.translate(
14204 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ltr ?
14205 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { itemX :
14206 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.legendWidth - itemX - 2 * symbolPadding - 4,
14207 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { itemY
14208 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
14209 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14210  
14211 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (checkbox) {
14212 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { checkbox.x = itemX;
14213 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { checkbox.y = itemY;
14214 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14215 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
14216  
14217 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
14218 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Destroy a single legend item
14219 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Object} item The series or point
14220 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
14221 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { destroyItem: function(item) {
14222 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var checkbox = item.checkbox;
14223  
14224 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // destroy SVG elements
14225 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(
14226 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ['legendItem', 'legendLine', 'legendSymbol', 'legendGroup'],
14227 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { function(key) {
14228 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (item[key]) {
14229 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { item[key] = item[key].destroy();
14230 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14231 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14232 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
14233  
14234 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (checkbox) {
14235 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { discardElement(item.checkbox);
14236 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14237 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
14238  
14239 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
14240 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Destroys the legend.
14241 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
14242 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { destroy: function() {
14243 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { function destroyItems(key) {
14244 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (this[key]) {
14245 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this[key] = this[key].destroy();
14246 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14247 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14248  
14249 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Destroy items
14250 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(this.getAllItems(), function(item) {
14251 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(['legendItem', 'legendGroup'], destroyItems, item);
14252 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14253  
14254 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Destroy legend elements
14255 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each([
14256 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'clipRect',
14257 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'up',
14258 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'down',
14259 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'pager',
14260 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'nav',
14261 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'box',
14262 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'title',
14263 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'group'
14264 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ], destroyItems, this);
14265 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.display = null; // Reset in .render on update.
14266 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
14267  
14268 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
14269 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Position the checkboxes after the width is determined
14270 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
14271 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { positionCheckboxes: function(scrollOffset) {
14272 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var alignAttr = this.group && this.group.alignAttr,
14273 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { translateY,
14274 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { clipHeight = this.clipHeight || this.legendHeight,
14275 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { titleHeight = this.titleHeight;
14276  
14277 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (alignAttr) {
14278 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { translateY = alignAttr.translateY;
14279 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(this.allItems, function(item) {
14280 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var checkbox = item.checkbox,
14281 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { top;
14282  
14283 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (checkbox) {
14284 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { top = translateY + titleHeight + checkbox.y +
14285 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (scrollOffset || 0) + 3;
14286 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { css(checkbox, {
14287 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { left: (alignAttr.translateX + item.checkboxOffset +
14288 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { checkbox.x - 20) + 'px',
14289 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { top: top + 'px',
14290 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { display: top > translateY - 6 && top < translateY +
14291 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { clipHeight - 6 ? '' : 'none'
14292 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14293 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14294 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14295 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14296 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
14297  
14298 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
14299 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Render the legend title on top of the legend
14300 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
14301 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { renderTitle: function() {
14302 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var options = this.options,
14303 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { padding = this.padding,
14304 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { titleOptions = options.title,
14305 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { titleHeight = 0,
14306 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { bBox;
14307  
14308 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (titleOptions.text) {
14309 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!this.title) {
14310 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.title = this.chart.renderer.label(
14311 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { titleOptions.text,
14312 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { padding - 3,
14313 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { padding - 4,
14314 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { null,
14315 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { null,
14316 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { null,
14317 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options.useHTML,
14318 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { null,
14319 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'legend-title'
14320 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )
14321 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .attr({
14322 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { zIndex: 1
14323 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { })
14324  
14325 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .css(titleOptions.style)
14326  
14327 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .add(this.group);
14328 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14329 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { bBox = this.title.getBBox();
14330 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { titleHeight = bBox.height;
14331 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.offsetWidth = bBox.width; // #1717
14332 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.contentGroup.attr({
14333 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { translateY: titleHeight
14334 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14335 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14336 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.titleHeight = titleHeight;
14337 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
14338  
14339 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
14340 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Set the legend item text
14341 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
14342 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { setText: function(item) {
14343 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var options = this.options;
14344 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { item.legendItem.attr({
14345 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { text: options.labelFormat ?
14346 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { H.format(options.labelFormat, item) : options.labelFormatter.call(item)
14347 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14348 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
14349  
14350 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
14351 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Render a single specific legend item
14352 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Object} item A series or point
14353 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
14354 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { renderItem: function(item) {
14355 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var legend = this,
14356 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart = legend.chart,
14357 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { renderer = chart.renderer,
14358 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options = legend.options,
14359 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { horizontal = options.layout === 'horizontal',
14360 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { symbolWidth = legend.symbolWidth,
14361 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { symbolPadding = options.symbolPadding,
14362  
14363 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { itemStyle = legend.itemStyle,
14364 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { itemHiddenStyle = legend.itemHiddenStyle,
14365  
14366 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { padding = legend.padding,
14367 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { itemDistance = horizontal ? pick(options.itemDistance, 20) : 0,
14368 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ltr = !options.rtl,
14369 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { itemHeight,
14370 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { widthOption = options.width,
14371 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { itemMarginBottom = options.itemMarginBottom || 0,
14372 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { itemMarginTop = legend.itemMarginTop,
14373 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { bBox,
14374 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { itemWidth,
14375 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { li = item.legendItem,
14376 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { isSeries = !item.series,
14377 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series = !isSeries && item.series.drawLegendSymbol ?
14378 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { item.series :
14379 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { item,
14380 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { seriesOptions = series.options,
14381 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { showCheckbox = legend.createCheckboxForItem &&
14382 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { seriesOptions &&
14383 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { seriesOptions.showCheckbox,
14384 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // full width minus text width
14385 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { itemExtraWidth = symbolWidth + symbolPadding + itemDistance +
14386 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (showCheckbox ? 20 : 0),
14387 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { useHTML = options.useHTML,
14388 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fontSize = 12,
14389 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { itemClassName = item.options.className;
14390  
14391 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!li) { // generate it once, later move it
14392  
14393 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Generate the group box, a group to hold the symbol and text. Text
14394 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // is to be appended in Legend class.
14395 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { item.legendGroup = renderer.g('legend-item')
14396 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .addClass(
14397 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'highcharts-' + series.type + '-series ' +
14398 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'highcharts-color-' + item.colorIndex +
14399 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (itemClassName ? ' ' + itemClassName : '') +
14400 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (isSeries ? ' highcharts-series-' + item.index : '')
14401 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )
14402 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .attr({
14403 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { zIndex: 1
14404 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { })
14405 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .add(legend.scrollGroup);
14406  
14407 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Generate the list item text and add it to the group
14408 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { item.legendItem = li = renderer.text(
14409 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { '',
14410 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ltr ? symbolWidth + symbolPadding : -symbolPadding,
14411 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.baseline || 0,
14412 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { useHTML
14413 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )
14414  
14415 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // merge to prevent modifying original (#1021)
14416 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .css(merge(item.visible ? itemStyle : itemHiddenStyle))
14417  
14418 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .attr({
14419 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { align: ltr ? 'left' : 'right',
14420 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { zIndex: 2
14421 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { })
14422 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .add(item.legendGroup);
14423  
14424 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Get the baseline for the first item - the font size is equal for
14425 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // all
14426 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!legend.baseline) {
14427  
14428 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fontSize = itemStyle.fontSize;
14429  
14430 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.fontMetrics = renderer.fontMetrics(
14431 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fontSize,
14432 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { li
14433 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
14434 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.baseline = legend.fontMetrics.f + 3 + itemMarginTop;
14435 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { li.attr('y', legend.baseline);
14436 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14437  
14438 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Draw the legend symbol inside the group box
14439 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.symbolHeight = options.symbolHeight || legend.fontMetrics.f;
14440 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.drawLegendSymbol(legend, item);
14441  
14442 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (legend.setItemEvents) {
14443 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.setItemEvents(item, li, useHTML);
14444 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14445  
14446 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // add the HTML checkbox on top
14447 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (showCheckbox) {
14448 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.createCheckboxForItem(item);
14449 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14450 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14451  
14452 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Colorize the items
14453 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.colorizeItem(item, item.visible);
14454  
14455 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Take care of max width and text overflow (#6659)
14456  
14457 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!itemStyle.width) {
14458  
14459 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { li.css({
14460 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { width: (options.itemWidth || chart.spacingBox.width) -
14461 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { itemExtraWidth
14462 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14463  
14464 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14465  
14466  
14467 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Always update the text
14468 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.setText(item);
14469  
14470 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // calculate the positions for the next line
14471 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { bBox = li.getBBox();
14472  
14473 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { itemWidth = item.checkboxOffset =
14474 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options.itemWidth ||
14475 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { item.legendItemWidth ||
14476 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { bBox.width + itemExtraWidth;
14477 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.itemHeight = itemHeight = Math.round(
14478 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { item.legendItemHeight || bBox.height || legend.symbolHeight
14479 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
14480  
14481 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // If the item exceeds the width, start a new line
14482 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (
14483 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { horizontal &&
14484 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.itemX - padding + itemWidth > (
14485 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { widthOption || (
14486 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.spacingBox.width - 2 * padding - options.x
14487 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )
14488 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )
14489 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ) {
14490 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.itemX = padding;
14491 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.itemY += itemMarginTop + legend.lastLineHeight +
14492 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { itemMarginBottom;
14493 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.lastLineHeight = 0; // reset for next line (#915, #3976)
14494 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14495  
14496 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // If the item exceeds the height, start a new column
14497 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /*if (!horizontal && legend.itemY + options.y +
14498 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { itemHeight > chart.chartHeight - spacingTop - spacingBottom) {
14499 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.itemY = legend.initialItemY;
14500 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.itemX += legend.maxItemWidth;
14501 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.maxItemWidth = 0;
14502 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }*/
14503  
14504 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Set the edge positions
14505 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.maxItemWidth = Math.max(legend.maxItemWidth, itemWidth);
14506 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.lastItemY = itemMarginTop + legend.itemY + itemMarginBottom;
14507 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.lastLineHeight = Math.max( // #915
14508 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { itemHeight,
14509 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.lastLineHeight
14510 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
14511  
14512 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // cache the position of the newly generated or reordered items
14513 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { item._legendItemPos = [legend.itemX, legend.itemY];
14514  
14515 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // advance
14516 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (horizontal) {
14517 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.itemX += itemWidth;
14518  
14519 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } else {
14520 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.itemY += itemMarginTop + itemHeight + itemMarginBottom;
14521 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.lastLineHeight = itemHeight;
14522 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14523  
14524 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // the width of the widest item
14525 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.offsetWidth = widthOption || Math.max(
14526 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (horizontal ? legend.itemX - padding - itemDistance : itemWidth) +
14527 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { padding,
14528 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.offsetWidth
14529 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
14530 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
14531  
14532 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
14533 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Get all items, which is one item per series for normal series and one
14534 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * item per point for pie series.
14535 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
14536 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { getAllItems: function() {
14537 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var allItems = [];
14538 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(this.chart.series, function(series) {
14539 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var seriesOptions = series && series.options;
14540  
14541 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Handle showInLegend. If the series is linked to another series,
14542 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // defaults to false.
14543 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (series && pick(
14544 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { seriesOptions.showInLegend, !defined(seriesOptions.linkedTo) ? undefined : false, true
14545 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )) {
14546  
14547 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Use points or series for the legend item depending on
14548 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // legendType
14549 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { allItems = allItems.concat(
14550 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.legendItems ||
14551 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (
14552 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { seriesOptions.legendType === 'point' ?
14553 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.data :
14554 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series
14555 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )
14556 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
14557 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14558 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14559 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { return allItems;
14560 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
14561  
14562 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
14563 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Adjust the chart margins by reserving space for the legend on only one
14564 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * side of the chart. If the position is set to a corner, top or bottom is
14565 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * reserved for horizontal legends and left or right for vertical ones.
14566 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
14567 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { adjustMargins: function(margin, spacing) {
14568 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var chart = this.chart,
14569 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options = this.options,
14570 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Use the first letter of each alignment option in order to detect
14571 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // the side. (#4189 - use charAt(x) notation instead of [x] for IE7)
14572 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { alignment = options.align.charAt(0) +
14573 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options.verticalAlign.charAt(0) +
14574 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options.layout.charAt(0);
14575  
14576 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!options.floating) {
14577  
14578 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each([
14579 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /(lth|ct|rth)/,
14580 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /(rtv|rm|rbv)/,
14581 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /(rbh|cb|lbh)/,
14582 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /(lbv|lm|ltv)/
14583 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ], function(alignments, side) {
14584 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (alignments.test(alignment) && !defined(margin[side])) {
14585 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Now we have detected on which side of the chart we should
14586 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // reserve space for the legend
14587 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart[marginNames[side]] = Math.max(
14588 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart[marginNames[side]],
14589 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (
14590 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.legend[
14591 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (side + 1) % 2 ? 'legendHeight' : 'legendWidth'
14592 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ] + [1, -1, -1, 1][side] * options[
14593 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (side % 2) ? 'x' : 'y'
14594 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ] +
14595 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pick(options.margin, 12) +
14596 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { spacing[side]
14597 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )
14598 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
14599 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14600 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14601 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14602 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
14603  
14604 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
14605 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Render the legend. This method can be called both before and after
14606 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * chart.render. If called after, it will only rearrange items instead
14607 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * of creating new ones.
14608 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
14609 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { render: function() {
14610 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var legend = this,
14611 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart = legend.chart,
14612 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { renderer = chart.renderer,
14613 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legendGroup = legend.group,
14614 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { allItems,
14615 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { display,
14616 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legendWidth,
14617 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legendHeight,
14618 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { box = legend.box,
14619 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options = legend.options,
14620 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { padding = legend.padding;
14621  
14622 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.itemX = padding;
14623 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.itemY = legend.initialItemY;
14624 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.offsetWidth = 0;
14625 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.lastItemY = 0;
14626  
14627 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!legendGroup) {
14628 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.group = legendGroup = renderer.g('legend')
14629 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .attr({
14630 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { zIndex: 7
14631 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { })
14632 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .add();
14633 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.contentGroup = renderer.g()
14634 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .attr({
14635 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { zIndex: 1
14636 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }) // above background
14637 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .add(legendGroup);
14638 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.scrollGroup = renderer.g()
14639 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .add(legend.contentGroup);
14640 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14641  
14642 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.renderTitle();
14643  
14644 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // add each series or point
14645 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { allItems = legend.getAllItems();
14646  
14647 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // sort by legendIndex
14648 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { stableSort(allItems, function(a, b) {
14649 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { return ((a.options && a.options.legendIndex) || 0) -
14650 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ((b.options && b.options.legendIndex) || 0);
14651 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14652  
14653 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // reversed legend
14654 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (options.reversed) {
14655 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { allItems.reverse();
14656 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14657  
14658 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.allItems = allItems;
14659 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.display = display = !!allItems.length;
14660  
14661 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // render the items
14662 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.lastLineHeight = 0;
14663 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(allItems, function(item) {
14664 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.renderItem(item);
14665 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14666  
14667 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Get the box
14668 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legendWidth = (options.width || legend.offsetWidth) + padding;
14669 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legendHeight = legend.lastItemY + legend.lastLineHeight +
14670 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.titleHeight;
14671 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legendHeight = legend.handleOverflow(legendHeight);
14672 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legendHeight += padding;
14673  
14674 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Draw the border and/or background
14675 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!box) {
14676 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.box = box = renderer.rect()
14677 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .addClass('highcharts-legend-box')
14678 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .attr({
14679 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { r: options.borderRadius
14680 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { })
14681 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .add(legendGroup);
14682 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { box.isNew = true;
14683 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14684  
14685  
14686 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Presentational
14687 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { box
14688 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .attr({
14689 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { stroke: options.borderColor,
14690 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'stroke-width': options.borderWidth || 0,
14691 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fill: options.backgroundColor || 'none'
14692 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { })
14693 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .shadow(options.shadow);
14694  
14695  
14696 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (legendWidth > 0 && legendHeight > 0) {
14697 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { box[box.isNew ? 'attr' : 'animate'](
14698 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { box.crisp({
14699 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { x: 0,
14700 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { y: 0,
14701 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { width: legendWidth,
14702 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { height: legendHeight
14703 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }, box.strokeWidth())
14704 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
14705 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { box.isNew = false;
14706 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14707  
14708 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // hide the border if no items
14709 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { box[display ? 'show' : 'hide']();
14710  
14711  
14712  
14713 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.legendWidth = legendWidth;
14714 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.legendHeight = legendHeight;
14715  
14716 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Now that the legend width and height are established, put the items
14717 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // in the final position
14718 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(allItems, function(item) {
14719 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.positionItem(item);
14720 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14721  
14722 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // 1.x compatibility: positioning based on style
14723 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /*var props = ['left', 'right', 'top', 'bottom'],
14724 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { prop,
14725 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { i = 4;
14726 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { while (i--) {
14727 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { prop = props[i];
14728 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (options.style[prop] && options.style[prop] !== 'auto') {
14729 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options[i < 2 ? 'align' : 'verticalAlign'] = prop;
14730 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options[i < 2 ? 'x' : 'y'] =
14731 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pInt(options.style[prop]) * (i % 2 ? -1 : 1);
14732 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14733 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }*/
14734  
14735 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (display) {
14736 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legendGroup.align(merge(options, {
14737 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { width: legendWidth,
14738 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { height: legendHeight
14739 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }), true, 'spacingBox');
14740 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14741  
14742 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!chart.isResizing) {
14743 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.positionCheckboxes();
14744 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14745 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
14746  
14747 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
14748 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Set up the overflow handling by adding navigation with up and down arrows
14749 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * below the legend.
14750 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
14751 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { handleOverflow: function(legendHeight) {
14752 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var legend = this,
14753 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart = this.chart,
14754 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { renderer = chart.renderer,
14755 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options = this.options,
14756 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { optionsY = options.y,
14757 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { alignTop = options.verticalAlign === 'top',
14758 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { padding = this.padding,
14759 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { spaceHeight = chart.spacingBox.height +
14760 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (alignTop ? -optionsY : optionsY) - padding,
14761 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { maxHeight = options.maxHeight,
14762 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { clipHeight,
14763 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { clipRect = this.clipRect,
14764 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { navOptions = options.navigation,
14765 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { animation = pick(navOptions.animation, true),
14766 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { arrowSize = navOptions.arrowSize || 12,
14767 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { nav = this.nav,
14768 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pages = this.pages,
14769 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { lastY,
14770 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { allItems = this.allItems,
14771 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { clipToHeight = function(height) {
14772 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (typeof height === 'number') {
14773 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { clipRect.attr({
14774 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { height: height
14775 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14776 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } else if (clipRect) { // Reset (#5912)
14777 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.clipRect = clipRect.destroy();
14778 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.contentGroup.clip();
14779 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14780  
14781 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // useHTML
14782 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (legend.contentGroup.div) {
14783 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.contentGroup.div.style.clip = height ?
14784 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'rect(' + padding + 'px,9999px,' +
14785 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (padding + height) + 'px,0)' :
14786 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'auto';
14787 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14788 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
14789  
14790  
14791 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Adjust the height
14792 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (
14793 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options.layout === 'horizontal' &&
14794 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options.verticalAlign !== 'middle' &&
14795 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { !options.floating
14796 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ) {
14797 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { spaceHeight /= 2;
14798 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14799 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (maxHeight) {
14800 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { spaceHeight = Math.min(spaceHeight, maxHeight);
14801 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14802  
14803 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Reset the legend height and adjust the clipping rectangle
14804 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pages.length = 0;
14805 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (legendHeight > spaceHeight && navOptions.enabled !== false) {
14806  
14807 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.clipHeight = clipHeight =
14808 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { Math.max(spaceHeight - 20 - this.titleHeight - padding, 0);
14809 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.currentPage = pick(this.currentPage, 1);
14810 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.fullHeight = legendHeight;
14811  
14812 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Fill pages with Y positions so that the top of each a legend item
14813 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // defines the scroll top for each page (#2098)
14814 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(allItems, function(item, i) {
14815 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var y = item._legendItemPos[1],
14816 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { h = Math.round(item.legendItem.getBBox().height),
14817 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { len = pages.length;
14818  
14819 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!len || (y - pages[len - 1] > clipHeight &&
14820 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (lastY || y) !== pages[len - 1])) {
14821 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pages.push(lastY || y);
14822 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { len++;
14823 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14824  
14825 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (i === allItems.length - 1 &&
14826 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { y + h - pages[len - 1] > clipHeight) {
14827 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pages.push(y);
14828 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14829 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (y !== lastY) {
14830 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { lastY = y;
14831 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14832 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14833  
14834 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Only apply clipping if needed. Clipping causes blurred legend in
14835 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // PDF export (#1787)
14836 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!clipRect) {
14837 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { clipRect = legend.clipRect =
14838 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { renderer.clipRect(0, padding, 9999, 0);
14839 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.contentGroup.clip(clipRect);
14840 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14841  
14842 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { clipToHeight(clipHeight);
14843  
14844 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Add navigation elements
14845 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!nav) {
14846 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.nav = nav = renderer.g()
14847 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .attr({
14848 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { zIndex: 1
14849 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { })
14850 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .add(this.group);
14851  
14852 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.up = renderer
14853 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .symbol(
14854 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'triangle',
14855 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 0,
14856 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 0,
14857 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { arrowSize,
14858 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { arrowSize
14859 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )
14860 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .on('click', function() {
14861 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.scroll(-1, animation);
14862 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { })
14863 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .add(nav);
14864  
14865 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.pager = renderer.text('', 15, 10)
14866 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .addClass('highcharts-legend-navigation')
14867  
14868 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .css(navOptions.style)
14869  
14870 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .add(nav);
14871  
14872 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.down = renderer
14873 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .symbol(
14874 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'triangle-down',
14875 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 0,
14876 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 0,
14877 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { arrowSize,
14878 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { arrowSize
14879 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )
14880 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .on('click', function() {
14881 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.scroll(1, animation);
14882 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { })
14883 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .add(nav);
14884 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14885  
14886 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Set initial position
14887 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.scroll(0);
14888  
14889 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legendHeight = spaceHeight;
14890  
14891 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Reset
14892 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } else if (nav) {
14893 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { clipToHeight();
14894 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.nav = nav.destroy(); // #6322
14895 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.scrollGroup.attr({
14896 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { translateY: 1
14897 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14898 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.clipHeight = 0; // #1379
14899 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14900  
14901 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { return legendHeight;
14902 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
14903  
14904 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
14905 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Scroll the legend by a number of pages
14906 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Object} scrollBy
14907 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Object} animation
14908 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
14909 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { scroll: function(scrollBy, animation) {
14910 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var pages = this.pages,
14911 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pageCount = pages.length,
14912 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { currentPage = this.currentPage + scrollBy,
14913 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { clipHeight = this.clipHeight,
14914 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { navOptions = this.options.navigation,
14915 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pager = this.pager,
14916 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { padding = this.padding,
14917 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { scrollOffset;
14918  
14919 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // When resizing while looking at the last page
14920 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (currentPage > pageCount) {
14921 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { currentPage = pageCount;
14922 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14923  
14924 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (currentPage > 0) {
14925  
14926 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (animation !== undefined) {
14927 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { setAnimation(animation, this.chart);
14928 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14929  
14930 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.nav.attr({
14931 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { translateX: padding,
14932 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { translateY: clipHeight + this.padding + 7 + this.titleHeight,
14933 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { visibility: 'visible'
14934 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14935 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.up.attr({
14936 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'class': currentPage === 1 ?
14937 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'highcharts-legend-nav-inactive' : 'highcharts-legend-nav-active'
14938 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14939 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pager.attr({
14940 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { text: currentPage + '/' + pageCount
14941 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14942 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.down.attr({
14943 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'x': 18 + this.pager.getBBox().width, // adjust to text width
14944 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'class': currentPage === pageCount ?
14945 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'highcharts-legend-nav-inactive' : 'highcharts-legend-nav-active'
14946 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14947  
14948  
14949 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.up
14950 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .attr({
14951 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fill: currentPage === 1 ?
14952 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { navOptions.inactiveColor : navOptions.activeColor
14953 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { })
14954 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .css({
14955 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { cursor: currentPage === 1 ? 'default' : 'pointer'
14956 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14957 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.down
14958 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .attr({
14959 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fill: currentPage === pageCount ?
14960 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { navOptions.inactiveColor : navOptions.activeColor
14961 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { })
14962 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .css({
14963 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { cursor: currentPage === pageCount ? 'default' : 'pointer'
14964 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14965  
14966  
14967 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { scrollOffset = -pages[currentPage - 1] + this.initialItemY;
14968  
14969 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.scrollGroup.animate({
14970 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { translateY: scrollOffset
14971 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
14972  
14973 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.currentPage = currentPage;
14974 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.positionCheckboxes(scrollOffset);
14975 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14976  
14977 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
14978  
14979 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
14980  
14981 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /*
14982 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * LegendSymbolMixin
14983 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
14984  
14985 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { H.LegendSymbolMixin = {
14986  
14987 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
14988 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Get the series' symbol in the legend
14989 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
14990 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Object} legend The legend object
14991 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Object} item The series (this) or point
14992 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
14993 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { drawRectangle: function(legend, item) {
14994 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var options = legend.options,
14995 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { symbolHeight = legend.symbolHeight,
14996 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { square = options.squareSymbol,
14997 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { symbolWidth = square ? symbolHeight : legend.symbolWidth;
14998  
14999 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { item.legendSymbol = this.chart.renderer.rect(
15000 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { square ? (legend.symbolWidth - symbolHeight) / 2 : 0,
15001 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.baseline - symbolHeight + 1, // #3988
15002 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { symbolWidth,
15003 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { symbolHeight,
15004 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pick(legend.options.symbolRadius, symbolHeight / 2)
15005 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )
15006 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .addClass('highcharts-point')
15007 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .attr({
15008 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { zIndex: 3
15009 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }).add(item.legendGroup);
15010  
15011 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15012  
15013 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
15014 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Get the series' symbol in the legend. This method should be overridable
15015 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * to create custom symbols through
15016 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Highcharts.seriesTypes[type].prototype.drawLegendSymbols.
15017 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
15018 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Object} legend The legend object
15019 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
15020 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { drawLineMarker: function(legend) {
15021  
15022 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var options = this.options,
15023 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { markerOptions = options.marker,
15024 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { radius,
15025 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legendSymbol,
15026 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { symbolWidth = legend.symbolWidth,
15027 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { symbolHeight = legend.symbolHeight,
15028 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { generalRadius = symbolHeight / 2,
15029 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { renderer = this.chart.renderer,
15030 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legendItemGroup = this.legendGroup,
15031 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { verticalCenter = legend.baseline -
15032 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { Math.round(legend.fontMetrics.b * 0.3),
15033 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { attr = {};
15034  
15035 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Draw the line
15036  
15037 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { attr = {
15038 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'stroke-width': options.lineWidth || 0
15039 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
15040 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (options.dashStyle) {
15041 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { attr.dashstyle = options.dashStyle;
15042 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15043  
15044  
15045 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.legendLine = renderer.path([
15046 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'M',
15047 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 0,
15048 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { verticalCenter,
15049 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'L',
15050 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { symbolWidth,
15051 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { verticalCenter
15052 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ])
15053 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .addClass('highcharts-graph')
15054 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .attr(attr)
15055 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .add(legendItemGroup);
15056  
15057 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Draw the marker
15058 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (markerOptions && markerOptions.enabled !== false) {
15059  
15060 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Do not allow the marker to be larger than the symbolHeight
15061 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { radius = Math.min(
15062 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pick(markerOptions.radius, generalRadius),
15063 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { generalRadius
15064 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
15065  
15066 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Restrict symbol markers size
15067 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (this.symbol.indexOf('url') === 0) {
15068 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { markerOptions = merge(markerOptions, {
15069 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { width: symbolHeight,
15070 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { height: symbolHeight
15071 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
15072 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { radius = 0;
15073 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15074  
15075 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.legendSymbol = legendSymbol = renderer.symbol(
15076 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.symbol,
15077 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (symbolWidth / 2) - radius,
15078 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { verticalCenter - radius,
15079 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 2 * radius,
15080 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 2 * radius,
15081 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { markerOptions
15082 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )
15083 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .addClass('highcharts-point')
15084 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .add(legendItemGroup);
15085 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legendSymbol.isMarker = true;
15086 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15087 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15088 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
15089  
15090 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Workaround for #2030, horizontal legend items not displaying in IE11 Preview,
15091 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // and for #2580, a similar drawing flaw in Firefox 26.
15092 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Explore if there's a general cause for this. The problem may be related
15093 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // to nested group elements, as the legend item texts are within 4 group
15094 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // elements.
15095 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (/Trident\/7\.0/.test(win.navigator.userAgent) || isFirefox) {
15096 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { wrap(Highcharts.Legend.prototype, 'positionItem', function(proceed, item) {
15097 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var legend = this,
15098 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // If chart destroyed in sync, this is undefined (#2030)
15099 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { runPositionItem = function() {
15100 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (item._legendItemPos) {
15101 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { proceed.call(legend, item);
15102 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15103 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
15104  
15105 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Do it now, for export and to get checkbox placement
15106 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { runPositionItem();
15107  
15108 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Do it after to work around the core issue
15109 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { setTimeout(runPositionItem);
15110 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
15111 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15112  
15113 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }(Highcharts));
15114 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (function(H) {
15115 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
15116 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * (c) 2010-2017 Torstein Honsi
15117 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
15118 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * License: www.highcharts.com/license
15119 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
15120 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var addEvent = H.addEvent,
15121 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { animate = H.animate,
15122 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { animObject = H.animObject,
15123 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { attr = H.attr,
15124 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { doc = H.doc,
15125 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { Axis = H.Axis, // @todo add as requirement
15126 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { createElement = H.createElement,
15127 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { defaultOptions = H.defaultOptions,
15128 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { discardElement = H.discardElement,
15129 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { charts = H.charts,
15130 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { css = H.css,
15131 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { defined = H.defined,
15132 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each = H.each,
15133 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { extend = H.extend,
15134 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { find = H.find,
15135 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fireEvent = H.fireEvent,
15136 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { getStyle = H.getStyle,
15137 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { grep = H.grep,
15138 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { isNumber = H.isNumber,
15139 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { isObject = H.isObject,
15140 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { isString = H.isString,
15141 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { Legend = H.Legend, // @todo add as requirement
15142 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { marginNames = H.marginNames,
15143 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { merge = H.merge,
15144 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { objectEach = H.objectEach,
15145 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { Pointer = H.Pointer, // @todo add as requirement
15146 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pick = H.pick,
15147 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pInt = H.pInt,
15148 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { removeEvent = H.removeEvent,
15149 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { seriesTypes = H.seriesTypes,
15150 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { splat = H.splat,
15151 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { svg = H.svg,
15152 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { syncTimeout = H.syncTimeout,
15153 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { win = H.win,
15154 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { Renderer = H.Renderer;
15155 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
15156 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * The Chart class. The recommended constructor is {@link Highcharts#chart}.
15157 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @class Highcharts.Chart
15158 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {String|HTMLDOMElement} renderTo
15159 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * The DOM element to render to, or its id.
15160 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Options} options
15161 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * The chart options structure.
15162 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Function} [callback]
15163 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Function to run when the chart has loaded and and all external images
15164 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * are loaded. Defining a {@link
15165 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * https://api.highcharts.com/highcharts/chart.events.load|chart.event.load}
15166 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * handler is equivalent.
15167 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
15168 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @example
15169 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * var chart = new Highcharts.Chart('container', {
15170 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * title: {
15171 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * text: 'My chart'
15172 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * },
15173 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * series: [{
15174 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * data: [1, 3, 2, 4]
15175 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * }]
15176 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * })
15177 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
15178 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var Chart = H.Chart = function() {
15179 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.getArgs.apply(this, arguments);
15180 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
15181  
15182 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
15183 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Factory function for basic charts.
15184 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
15185 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @function #chart
15186 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @memberOf Highcharts
15187 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {String|HTMLDOMElement} renderTo - The DOM element to render to, or
15188 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * its id.
15189 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Options} options - The chart options structure.
15190 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Function} [callback] - Function to run when the chart has loaded and
15191 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * and all external images are loaded. Defining a {@link
15192 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * https://api.highcharts.com/highcharts/chart.events.load|chart.event.load}
15193 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * handler is equivalent.
15194 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @return {Highcharts.Chart} - Returns the Chart object.
15195 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
15196 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @example
15197 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * // Render a chart in to div#container
15198 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * var chart = Highcharts.chart('container', {
15199 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * title: {
15200 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * text: 'My chart'
15201 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * },
15202 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * series: [{
15203 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * data: [1, 3, 2, 4]
15204 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * }]
15205 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * });
15206 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
15207 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { H.chart = function(a, b, c) {
15208 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { return new Chart(a, b, c);
15209 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
15210  
15211 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { extend(Chart.prototype, /** @lends Highcharts.Chart.prototype */ {
15212  
15213 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
15214 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Hook for modules
15215 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
15216 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { callbacks: [],
15217  
15218 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
15219 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Handle the arguments passed to the constructor
15220 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @returns {Array} Arguments without renderTo
15221 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
15222 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { getArgs: function() {
15223 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var args = [].slice.call(arguments);
15224  
15225 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Remove the optional first argument, renderTo, and
15226 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // set it on this.
15227 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (isString(args[0]) || args[0].nodeName) {
15228 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.renderTo = args.shift();
15229 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15230 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.init(args[0], args[1]);
15231 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15232  
15233 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
15234 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Initialize the chart
15235 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
15236 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { init: function(userOptions, callback) {
15237  
15238 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Handle regular options
15239 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var options,
15240 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { type,
15241 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { seriesOptions = userOptions.series, // skip merging data points to increase performance
15242 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { userPlotOptions = userOptions.plotOptions || {};
15243  
15244 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { userOptions.series = null;
15245 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options = merge(defaultOptions, userOptions); // do the merge
15246  
15247 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Override (by copy of user options) or clear tooltip options
15248 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // in chart.options.plotOptions (#6218)
15249 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { for (type in options.plotOptions) {
15250 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options.plotOptions[type].tooltip = (
15251 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { userPlotOptions[type] &&
15252 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { merge(userPlotOptions[type].tooltip) // override by copy
15253 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ) || undefined; // or clear
15254 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15255 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // User options have higher priority than default options (#6218).
15256 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // In case of exporting: path is changed
15257 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options.tooltip.userOptions = (userOptions.chart &&
15258 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { userOptions.chart.forExport && userOptions.tooltip.userOptions) ||
15259 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { userOptions.tooltip;
15260  
15261 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options.series = userOptions.series = seriesOptions; // set back the series data
15262 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.userOptions = userOptions;
15263  
15264 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var optionsChart = options.chart;
15265  
15266 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var chartEvents = optionsChart.events;
15267  
15268 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.margin = [];
15269 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.spacing = [];
15270  
15271 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //this.runChartClick = chartEvents && !!chartEvents.click;
15272 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.bounds = {
15273 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { h: {},
15274 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { v: {}
15275 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }; // Pixel data bounds for touch zoom
15276  
15277 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.callback = callback;
15278 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.isResizing = 0;
15279  
15280 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
15281 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * The options structure for the chart. It contains members for the sub
15282 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * elements like series, legend, tooltip etc.
15283 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
15284 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @memberof Highcharts.Chart
15285 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @name options
15286 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @type {Options}
15287 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
15288 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.options = options;
15289 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
15290 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * All the axes in the chart.
15291 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
15292 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @memberof Highcharts.Chart
15293 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @name axes
15294 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @see Highcharts.Chart.xAxis
15295 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @see Highcharts.Chart.yAxis
15296 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @type {Array.<Highcharts.Axis>}
15297 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
15298 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.axes = [];
15299  
15300 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
15301 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * All the current series in the chart.
15302 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
15303 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @memberof Highcharts.Chart
15304 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @name series
15305 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @type {Array.<Highcharts.Series>}
15306 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
15307 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.series = [];
15308  
15309 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
15310 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * The chart title. The title has an `update` method that allows
15311 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * modifying the options directly or indirectly via `chart.update`.
15312 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
15313 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @memberof Highcharts.Chart
15314 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @name title
15315 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @type Object
15316 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
15317 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @sample highcharts/members/title-update/
15318 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Updating titles
15319 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
15320  
15321 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
15322 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * The chart subtitle. The subtitle has an `update` method that allows
15323 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * modifying the options directly or indirectly via `chart.update`.
15324 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
15325 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @memberof Highcharts.Chart
15326 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @name subtitle
15327 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @type Object
15328 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
15329  
15330  
15331  
15332 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.hasCartesianSeries = optionsChart.showAxes;
15333 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //this.axisOffset = undefined;
15334 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //this.inverted = undefined;
15335 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //this.loadingShown = undefined;
15336 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //this.container = undefined;
15337 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //this.chartWidth = undefined;
15338 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //this.chartHeight = undefined;
15339 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //this.marginRight = undefined;
15340 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //this.marginBottom = undefined;
15341 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //this.containerWidth = undefined;
15342 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //this.containerHeight = undefined;
15343 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //this.oldChartWidth = undefined;
15344 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //this.oldChartHeight = undefined;
15345  
15346 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //this.renderTo = undefined;
15347  
15348 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //this.spacingBox = undefined
15349  
15350 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //this.legend = undefined;
15351  
15352 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Elements
15353 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //this.chartBackground = undefined;
15354 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //this.plotBackground = undefined;
15355 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //this.plotBGImage = undefined;
15356 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //this.plotBorder = undefined;
15357 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //this.loadingDiv = undefined;
15358 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //this.loadingSpan = undefined;
15359  
15360 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var chart = this;
15361  
15362 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Add the chart to the global lookup
15363 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.index = charts.length;
15364  
15365 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { charts.push(chart);
15366 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { H.chartCount++;
15367  
15368 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Chart event handlers
15369 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (chartEvents) {
15370 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { objectEach(chartEvents, function(event, eventType) {
15371 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { addEvent(chart, eventType, event);
15372 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
15373 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15374  
15375 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
15376 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * A collection of the X axes in the chart.
15377 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @type {Array.<Highcharts.Axis>}
15378 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @name xAxis
15379 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @memberOf Highcharts.Chart
15380 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
15381 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.xAxis = [];
15382 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
15383 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * A collection of the Y axes in the chart.
15384 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @type {Array.<Highcharts.Axis>}
15385 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @name yAxis
15386 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @memberOf Highcharts.Chart
15387 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
15388 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.yAxis = [];
15389  
15390 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.pointCount = chart.colorCounter = chart.symbolCounter = 0;
15391  
15392 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.firstRender();
15393 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15394  
15395 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
15396 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Initialize an individual series, called internally before render time
15397 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
15398 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { initSeries: function(options) {
15399 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var chart = this,
15400 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { optionsChart = chart.options.chart,
15401 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { type = options.type || optionsChart.type || optionsChart.defaultSeriesType,
15402 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series,
15403 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { Constr = seriesTypes[type];
15404  
15405 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // No such series type
15406 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!Constr) {
15407 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { H.error(17, true);
15408 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15409  
15410 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series = new Constr();
15411 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.init(this, options);
15412 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { return series;
15413 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15414  
15415 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
15416 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Order all series above a given index. When series are added and ordered
15417 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * by configuration, only the last series is handled (#248, #1123, #2456,
15418 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * #6112). This function is called on series initialization and destroy.
15419 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
15420 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {number} fromIndex - If this is given, only the series above this
15421 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * index are handled.
15422 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
15423 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { orderSeries: function(fromIndex) {
15424 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var series = this.series,
15425 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { i = fromIndex || 0;
15426 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { for (; i < series.length; i++) {
15427 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (series[i]) {
15428 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series[i].index = i;
15429 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series[i].name = series[i].name ||
15430 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'Series ' + (series[i].index + 1);
15431 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15432 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15433 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15434  
15435 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
15436 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Check whether a given point is within the plot area
15437 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
15438 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Number} plotX Pixel x relative to the plot area
15439 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Number} plotY Pixel y relative to the plot area
15440 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Boolean} inverted Whether the chart is inverted
15441 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
15442 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { isInsidePlot: function(plotX, plotY, inverted) {
15443 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var x = inverted ? plotY : plotX,
15444 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { y = inverted ? plotX : plotY;
15445  
15446 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { return x >= 0 &&
15447 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { x <= this.plotWidth &&
15448 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { y >= 0 &&
15449 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { y <= this.plotHeight;
15450 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15451  
15452 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
15453 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Redraw the chart after changes have been done to the data, axis extremes
15454 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * chart size or chart elements. All methods for updating axes, series or
15455 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * points have a parameter for redrawing the chart. This is `true` by
15456 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * default. But in many cases you want to do more than one operation on the
15457 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * chart before redrawing, for example add a number of points. In those
15458 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * cases it is a waste of resources to redraw the chart for each new point
15459 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * added. So you add the points and call `chart.redraw()` after.
15460 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
15461 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {AnimationOptions} animation
15462 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * If or how to apply animation to the redraw.
15463 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
15464 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { redraw: function(animation) {
15465 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var chart = this,
15466 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { axes = chart.axes,
15467 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series = chart.series,
15468 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pointer = chart.pointer,
15469 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend = chart.legend,
15470 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { redrawLegend = chart.isDirtyLegend,
15471 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { hasStackedSeries,
15472 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { hasDirtyStacks,
15473 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { hasCartesianSeries = chart.hasCartesianSeries,
15474 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { isDirtyBox = chart.isDirtyBox,
15475 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { i,
15476 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { serie,
15477 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { renderer = chart.renderer,
15478 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { isHiddenChart = renderer.isHidden(),
15479 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { afterRedraw = [];
15480  
15481 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Handle responsive rules, not only on resize (#6130)
15482 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (chart.setResponsive) {
15483 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.setResponsive(false);
15484 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15485  
15486 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { H.setAnimation(animation, chart);
15487  
15488 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (isHiddenChart) {
15489 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.temporaryDisplay();
15490 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15491  
15492 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Adjust title layout (reflow multiline text)
15493 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.layOutTitles();
15494  
15495 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // link stacked series
15496 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { i = series.length;
15497 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { while (i--) {
15498 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { serie = series[i];
15499  
15500 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (serie.options.stacking) {
15501 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { hasStackedSeries = true;
15502  
15503 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (serie.isDirty) {
15504 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { hasDirtyStacks = true;
15505 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { break;
15506 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15507 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15508 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15509 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (hasDirtyStacks) { // mark others as dirty
15510 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { i = series.length;
15511 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { while (i--) {
15512 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { serie = series[i];
15513 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (serie.options.stacking) {
15514 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { serie.isDirty = true;
15515 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15516 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15517 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15518  
15519 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Handle updated data in the series
15520 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(series, function(serie) {
15521 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (serie.isDirty) {
15522 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (serie.options.legendType === 'point') {
15523 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (serie.updateTotals) {
15524 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { serie.updateTotals();
15525 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15526 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { redrawLegend = true;
15527 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15528 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15529 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (serie.isDirtyData) {
15530 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fireEvent(serie, 'updatedData');
15531 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15532 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
15533  
15534 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // handle added or removed series
15535 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (redrawLegend && legend.options.enabled) { // series or pie points are added or removed
15536 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // draw legend graphics
15537 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { legend.render();
15538  
15539 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.isDirtyLegend = false;
15540 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15541  
15542 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // reset stacks
15543 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (hasStackedSeries) {
15544 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.getStacks();
15545 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15546  
15547  
15548 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (hasCartesianSeries) {
15549 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // set axes scales
15550 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(axes, function(axis) {
15551 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { axis.updateNames();
15552 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { axis.setScale();
15553 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
15554 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15555  
15556 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.getMargins(); // #3098
15557  
15558 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (hasCartesianSeries) {
15559 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // If one axis is dirty, all axes must be redrawn (#792, #2169)
15560 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(axes, function(axis) {
15561 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (axis.isDirty) {
15562 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { isDirtyBox = true;
15563 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15564 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
15565  
15566 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // redraw axes
15567 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(axes, function(axis) {
15568  
15569 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Fire 'afterSetExtremes' only if extremes are set
15570 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var key = axis.min + ',' + axis.max;
15571 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (axis.extKey !== key) { // #821, #4452
15572 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { axis.extKey = key;
15573 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { afterRedraw.push(function() { // prevent a recursive call to chart.redraw() (#1119)
15574 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fireEvent(axis, 'afterSetExtremes', extend(axis.eventArgs, axis.getExtremes())); // #747, #751
15575 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { delete axis.eventArgs;
15576 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
15577 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15578 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (isDirtyBox || hasStackedSeries) {
15579 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { axis.redraw();
15580 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15581 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
15582 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15583  
15584 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // the plot areas size has changed
15585 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (isDirtyBox) {
15586 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.drawChartBox();
15587 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15588  
15589 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Fire an event before redrawing series, used by the boost module to
15590 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // clear previous series renderings.
15591 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fireEvent(chart, 'predraw');
15592  
15593 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // redraw affected series
15594 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(series, function(serie) {
15595 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if ((isDirtyBox || serie.isDirty) && serie.visible) {
15596 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { serie.redraw();
15597 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15598 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Set it here, otherwise we will have unlimited 'updatedData' calls
15599 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // for a hidden series after setData(). Fixes #6012
15600 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { serie.isDirtyData = false;
15601 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
15602  
15603 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // move tooltip or reset
15604 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (pointer) {
15605 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pointer.reset(true);
15606 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15607  
15608 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // redraw if canvas
15609 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { renderer.draw();
15610  
15611 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Fire the events
15612 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fireEvent(chart, 'redraw');
15613 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fireEvent(chart, 'render');
15614  
15615 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (isHiddenChart) {
15616 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.temporaryDisplay(true);
15617 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15618  
15619 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Fire callbacks that are put on hold until after the redraw
15620 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(afterRedraw, function(callback) {
15621 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { callback.call();
15622 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
15623 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15624  
15625 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
15626 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Get an axis, series or point object by `id` as given in the configuration
15627 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * options. Returns `undefined` if no item is found.
15628 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param id {String} The id as given in the configuration options.
15629 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @return {Highcharts.Axis|Highcharts.Series|Highcharts.Point|undefined}
15630 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * The retrieved item.
15631 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @sample highcharts/plotoptions/series-id/
15632 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Get series by id
15633 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
15634 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { get: function(id) {
15635  
15636 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var ret,
15637 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series = this.series,
15638 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { i;
15639  
15640 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { function itemById(item) {
15641 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { return item.id === id || (item.options && item.options.id === id);
15642 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15643  
15644 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ret =
15645 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Search axes
15646 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { find(this.axes, itemById) ||
15647  
15648 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Search series
15649 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { find(this.series, itemById);
15650  
15651 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Search points
15652 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { for (i = 0; !ret && i < series.length; i++) {
15653 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ret = find(series[i].points || [], itemById);
15654 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15655  
15656 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { return ret;
15657 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15658  
15659 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
15660 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Create the Axis instances based on the config options
15661 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
15662 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { getAxes: function() {
15663 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var chart = this,
15664 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options = this.options,
15665 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { xAxisOptions = options.xAxis = splat(options.xAxis || {}),
15666 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { yAxisOptions = options.yAxis = splat(options.yAxis || {}),
15667 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { optionsArray;
15668  
15669 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // make sure the options are arrays and add some members
15670 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(xAxisOptions, function(axis, i) {
15671 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { axis.index = i;
15672 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { axis.isX = true;
15673 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
15674  
15675 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(yAxisOptions, function(axis, i) {
15676 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { axis.index = i;
15677 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
15678  
15679 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // concatenate all axis options into one array
15680 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { optionsArray = xAxisOptions.concat(yAxisOptions);
15681  
15682 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(optionsArray, function(axisOptions) {
15683 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { new Axis(chart, axisOptions); // eslint-disable-line no-new
15684 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
15685 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15686  
15687  
15688 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
15689 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Returns an array of all currently selected points in the chart. Points
15690 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * can be selected by clicking or programmatically by the {@link
15691 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Highcharts.Point#select} function.
15692 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
15693 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @return {Array.<Highcharts.Point>}
15694 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * The currently selected points.
15695 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
15696 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @sample highcharts/plotoptions/series-allowpointselect-line/
15697 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Get selected points
15698 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
15699 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { getSelectedPoints: function() {
15700 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var points = [];
15701 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(this.series, function(serie) {
15702 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // series.data - for points outside of viewed range (#6445)
15703 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { points = points.concat(grep(serie.data || [], function(point) {
15704 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { return point.selected;
15705 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }));
15706 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
15707 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { return points;
15708 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15709  
15710 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
15711 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Returns an array of all currently selected series in the chart. Series
15712 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * can be selected either programmatically by the {@link
15713 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Highcharts.Series#select} function or by checking the checkbox next to
15714 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * the legend item if {@link
15715 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * https://api.highcharts.com/highcharts/plotOptions.series.showCheckbox|
15716 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * series.showCheckBox} is true.
15717 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
15718 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @return {Array.<Highcharts.Series>}
15719 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * The currently selected series.
15720 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
15721 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @sample highcharts/members/chart-getselectedseries/
15722 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Get selected series
15723 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
15724 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { getSelectedSeries: function() {
15725 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { return grep(this.series, function(serie) {
15726 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { return serie.selected;
15727 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
15728 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15729  
15730 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
15731 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Set a new title or subtitle for the chart.
15732 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
15733 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param titleOptions {TitleOptions}
15734 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * New title options.
15735 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param subtitleOptions {SubtitleOptions}
15736 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * New subtitle options.
15737 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param redraw {Boolean}
15738 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Whether to redraw the chart or wait for a later call to
15739 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * `chart.redraw()`.
15740 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
15741 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @sample highcharts/members/chart-settitle/ Set title text and styles
15742 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
15743 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
15744 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { setTitle: function(titleOptions, subtitleOptions, redraw) {
15745 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var chart = this,
15746 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options = chart.options,
15747 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chartTitleOptions,
15748 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chartSubtitleOptions;
15749  
15750 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chartTitleOptions = options.title = merge(
15751  
15752 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Default styles
15753 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { {
15754 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { style: {
15755 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { color: '#333333',
15756 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fontSize: options.isStock ? '16px' : '18px' // #2944
15757 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15758 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15759  
15760 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options.title,
15761 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { titleOptions
15762 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
15763 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chartSubtitleOptions = options.subtitle = merge(
15764  
15765 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Default styles
15766 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { {
15767 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { style: {
15768 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { color: '#666666'
15769 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15770 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15771  
15772 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options.subtitle,
15773 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { subtitleOptions
15774 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
15775  
15776 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // add title and subtitle
15777 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each([
15778 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ['title', titleOptions, chartTitleOptions],
15779 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ['subtitle', subtitleOptions, chartSubtitleOptions]
15780 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ], function(arr, i) {
15781 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var name = arr[0],
15782 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { title = chart[name],
15783 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { titleOptions = arr[1],
15784 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chartTitleOptions = arr[2];
15785  
15786 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (title && titleOptions) {
15787 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart[name] = title = title.destroy(); // remove old
15788 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15789  
15790 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (chartTitleOptions && chartTitleOptions.text && !title) {
15791 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart[name] = chart.renderer.text(
15792 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chartTitleOptions.text,
15793 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 0,
15794 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 0,
15795 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chartTitleOptions.useHTML
15796 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )
15797 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .attr({
15798 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { align: chartTitleOptions.align,
15799 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'class': 'highcharts-' + name,
15800 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { zIndex: chartTitleOptions.zIndex || 4
15801 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { })
15802 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .add();
15803  
15804 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Update methods, shortcut to Chart.setTitle
15805 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart[name].update = function(o) {
15806 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.setTitle(!i && o, i && o);
15807 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
15808  
15809  
15810 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Presentational
15811 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart[name].css(chartTitleOptions.style);
15812  
15813  
15814 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15815 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
15816 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.layOutTitles(redraw);
15817 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15818  
15819 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
15820 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Lay out the chart titles and cache the full offset height for use
15821 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * in getMargins
15822 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
15823 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { layOutTitles: function(redraw) {
15824 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var titleOffset = 0,
15825 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { requiresDirtyBox,
15826 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { renderer = this.renderer,
15827 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { spacingBox = this.spacingBox;
15828  
15829 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Lay out the title and the subtitle respectively
15830 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(['title', 'subtitle'], function(key) {
15831 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var title = this[key],
15832 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { titleOptions = this.options[key],
15833 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { offset = key === 'title' ? -3 :
15834 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Floating subtitle (#6574)
15835 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { titleOptions.verticalAlign ? 0 : titleOffset + 2,
15836 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { titleSize;
15837  
15838 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (title) {
15839  
15840 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { titleSize = titleOptions.style.fontSize;
15841  
15842 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { titleSize = renderer.fontMetrics(titleSize, title).b;
15843  
15844 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { title
15845 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .css({
15846 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { width: (titleOptions.width ||
15847 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { spacingBox.width + titleOptions.widthAdjust) + 'px'
15848 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { })
15849 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .align(extend({
15850 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { y: offset + titleSize
15851 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }, titleOptions), false, 'spacingBox');
15852  
15853 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!titleOptions.floating && !titleOptions.verticalAlign) {
15854 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { titleOffset = Math.ceil(
15855 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { titleOffset +
15856 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Skip the cache for HTML (#3481)
15857 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { title.getBBox(titleOptions.useHTML).height
15858 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
15859 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15860 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15861 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }, this);
15862  
15863 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { requiresDirtyBox = this.titleOffset !== titleOffset;
15864 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.titleOffset = titleOffset; // used in getMargins
15865  
15866 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!this.isDirtyBox && requiresDirtyBox) {
15867 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.isDirtyBox = requiresDirtyBox;
15868 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Redraw if necessary (#2719, #2744)
15869 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (this.hasRendered && pick(redraw, true) && this.isDirtyBox) {
15870 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.redraw();
15871 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15872 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15873 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15874  
15875 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
15876 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Get chart width and height according to options and container size
15877 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
15878 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { getChartSize: function() {
15879 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var chart = this,
15880 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { optionsChart = chart.options.chart,
15881 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { widthOption = optionsChart.width,
15882 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { heightOption = optionsChart.height,
15883 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { renderTo = chart.renderTo;
15884  
15885 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Get inner width and height
15886 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!defined(widthOption)) {
15887 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.containerWidth = getStyle(renderTo, 'width');
15888 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15889 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!defined(heightOption)) {
15890 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.containerHeight = getStyle(renderTo, 'height');
15891 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15892  
15893 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.chartWidth = Math.max( // #1393
15894 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 0,
15895 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { widthOption || chart.containerWidth || 600 // #1460
15896 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
15897 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.chartHeight = Math.max(
15898 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 0,
15899 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { H.relativeLength(
15900 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { heightOption,
15901 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.chartWidth
15902 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ) || chart.containerHeight || 400
15903 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
15904 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15905  
15906 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
15907 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * If the renderTo element has no offsetWidth, most likely one or more of
15908 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * its parents are hidden. Loop up the DOM tree to temporarily display the
15909 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * parents, then save the original display properties, and when the true
15910 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * size is retrieved, reset them. Used on first render and on redraws.
15911 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
15912 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Boolean} revert - Revert to the saved original styles.
15913 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
15914 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { temporaryDisplay: function(revert) {
15915 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var node = this.renderTo,
15916 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { tempStyle;
15917 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!revert) {
15918 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { while (node && node.style) {
15919 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (getStyle(node, 'display', false) === 'none') {
15920 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { node.hcOrigStyle = {
15921 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { display: node.style.display,
15922 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { height: node.style.height,
15923 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { overflow: node.style.overflow
15924 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
15925 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { tempStyle = {
15926 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { display: 'block',
15927 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { overflow: 'hidden'
15928 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
15929 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (node !== this.renderTo) {
15930 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { tempStyle.height = 0;
15931 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15932  
15933 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { H.css(node, tempStyle);
15934 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (node.style.setProperty) { // #2631
15935 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { node.style.setProperty('display', 'block', 'important');
15936 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15937 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15938 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { node = node.parentNode;
15939 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15940 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } else {
15941 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { while (node && node.style) {
15942 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (node.hcOrigStyle) {
15943 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { H.css(node, node.hcOrigStyle);
15944 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { delete node.hcOrigStyle;
15945 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15946 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { node = node.parentNode;
15947 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15948 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15949 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15950  
15951 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
15952 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Setter for the chart class name
15953 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
15954 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { setClassName: function(className) {
15955 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.container.className = 'highcharts-container ' + (className || '');
15956 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
15957  
15958 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
15959 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Get the containing element, determine the size and create the inner
15960 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * container div to hold the chart
15961 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
15962 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { getContainer: function() {
15963 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var chart = this,
15964 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { container,
15965 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options = chart.options,
15966 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { optionsChart = options.chart,
15967 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chartWidth,
15968 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chartHeight,
15969 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { renderTo = chart.renderTo,
15970 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { indexAttrName = 'data-highcharts-chart',
15971 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { oldChartIndex,
15972 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { Ren,
15973 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { containerId = H.uniqueKey(),
15974 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { containerStyle,
15975 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { key;
15976  
15977 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!renderTo) {
15978 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.renderTo = renderTo = optionsChart.renderTo;
15979 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15980  
15981 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (isString(renderTo)) {
15982 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.renderTo = renderTo = doc.getElementById(renderTo);
15983 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15984  
15985 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Display an error if the renderTo is wrong
15986 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!renderTo) {
15987 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { H.error(13, true);
15988 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
15989  
15990 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // If the container already holds a chart, destroy it. The check for
15991 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // hasRendered is there because web pages that are saved to disk from
15992 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // the browser, will preserve the data-highcharts-chart attribute and
15993 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // the SVG contents, but not an interactive chart. So in this case,
15994 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // charts[oldChartIndex] will point to the wrong chart if any (#2609).
15995 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { oldChartIndex = pInt(attr(renderTo, indexAttrName));
15996 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (
15997 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { isNumber(oldChartIndex) &&
15998 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { charts[oldChartIndex] &&
15999 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { charts[oldChartIndex].hasRendered
16000 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ) {
16001 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { charts[oldChartIndex].destroy();
16002 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16003  
16004 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Make a reference to the chart from the div
16005 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { attr(renderTo, indexAttrName, chart.index);
16006  
16007 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // remove previous chart
16008 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { renderTo.innerHTML = '';
16009  
16010 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // If the container doesn't have an offsetWidth, it has or is a child of
16011 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // a node that has display:none. We need to temporarily move it out to a
16012 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // visible state to determine the size, else the legend and tooltips
16013 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // won't render properly. The skipClone option is used in sparklines as
16014 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // a micro optimization, saving about 1-2 ms each chart.
16015 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!optionsChart.skipClone && !renderTo.offsetWidth) {
16016 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.temporaryDisplay();
16017 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16018  
16019 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // get the width and height
16020 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.getChartSize();
16021 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chartWidth = chart.chartWidth;
16022 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chartHeight = chart.chartHeight;
16023  
16024 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Create the inner container
16025  
16026 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { containerStyle = extend({
16027 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { position: 'relative',
16028 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { overflow: 'hidden', // needed for context menu (avoid scrollbars)
16029 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // and content overflow in IE
16030 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { width: chartWidth + 'px',
16031 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { height: chartHeight + 'px',
16032 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { textAlign: 'left',
16033 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { lineHeight: 'normal', // #427
16034 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { zIndex: 0, // #1072
16035 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { '-webkit-tap-highlight-color': 'rgba(0,0,0,0)'
16036 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }, optionsChart.style);
16037  
16038  
16039 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
16040 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * The containing HTML element of the chart. The container is
16041 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * dynamically inserted into the element given as the `renderTo`
16042 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * parameterin the {@link Highcharts#chart} constructor.
16043 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
16044 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @memberOf Highcharts.Chart
16045 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @type {HTMLDOMElement}
16046 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
16047 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { container = createElement(
16048 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'div', {
16049 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { id: containerId
16050 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
16051 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { containerStyle,
16052 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { renderTo
16053 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
16054 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.container = container;
16055  
16056 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // cache the cursor (#1650)
16057 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart._cursor = container.style.cursor;
16058  
16059 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Initialize the renderer
16060 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { Ren = H[optionsChart.renderer] || Renderer;
16061 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.renderer = new Ren(
16062 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { container,
16063 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chartWidth,
16064 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chartHeight,
16065 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { null,
16066 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { optionsChart.forExport,
16067 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options.exporting && options.exporting.allowHTML
16068 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
16069  
16070  
16071 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.setClassName(optionsChart.className);
16072  
16073 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.renderer.setStyle(optionsChart.style);
16074  
16075  
16076 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Add a reference to the charts index
16077 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.renderer.chartIndex = chart.index;
16078 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
16079  
16080 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
16081 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Calculate margins by rendering axis labels in a preliminary position.
16082 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Title, subtitle and legend have already been rendered at this stage, but
16083 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * will be moved into their final positions
16084 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
16085 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { getMargins: function(skipAxes) {
16086 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var chart = this,
16087 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { spacing = chart.spacing,
16088 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { margin = chart.margin,
16089 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { titleOffset = chart.titleOffset;
16090  
16091 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.resetMargins();
16092  
16093 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Adjust for title and subtitle
16094 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (titleOffset && !defined(margin[0])) {
16095 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.plotTop = Math.max(
16096 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.plotTop,
16097 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { titleOffset + chart.options.title.margin + spacing[0]
16098 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
16099 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16100  
16101 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Adjust for legend
16102 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (chart.legend.display) {
16103 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.legend.adjustMargins(margin, spacing);
16104 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16105  
16106 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // adjust for scroller
16107 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (chart.extraMargin) {
16108 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart[chart.extraMargin.type] =
16109 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (chart[chart.extraMargin.type] || 0) + chart.extraMargin.value;
16110 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16111 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (chart.extraTopMargin) {
16112 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.plotTop += chart.extraTopMargin;
16113 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16114 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!skipAxes) {
16115 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.getAxisMargins();
16116 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16117 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
16118  
16119 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { getAxisMargins: function() {
16120  
16121 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var chart = this,
16122 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // [top, right, bottom, left]
16123 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { axisOffset = chart.axisOffset = [0, 0, 0, 0],
16124 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { margin = chart.margin;
16125  
16126 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // pre-render axes to get labels offset width
16127 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (chart.hasCartesianSeries) {
16128 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(chart.axes, function(axis) {
16129 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (axis.visible) {
16130 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { axis.getOffset();
16131 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16132 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
16133 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16134  
16135 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Add the axis offsets
16136 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(marginNames, function(m, side) {
16137 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!defined(margin[side])) {
16138 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart[m] += axisOffset[side];
16139 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16140 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
16141  
16142 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.setChartSize();
16143  
16144 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
16145  
16146 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
16147 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Reflows the chart to its container. By default, the chart reflows
16148 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * automatically to its container following a `window.resize` event, as per
16149 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * the {@link https://api.highcharts/highcharts/chart.reflow|chart.reflow}
16150 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * option. However, there are no reliable events for div resize, so if the
16151 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * container is resized without a window resize event, this must be called
16152 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * explicitly.
16153 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
16154 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Object} e
16155 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Event arguments. Used primarily when the function is called
16156 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * internally as a response to window resize.
16157 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
16158 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @sample highcharts/members/chart-reflow/
16159 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Resize div and reflow
16160 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @sample highcharts/chart/events-container/
16161 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Pop up and reflow
16162 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
16163 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { reflow: function(e) {
16164 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var chart = this,
16165 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { optionsChart = chart.options.chart,
16166 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { renderTo = chart.renderTo,
16167 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { hasUserWidth = defined(optionsChart.width),
16168 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { width = optionsChart.width || getStyle(renderTo, 'width'),
16169 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { height = optionsChart.height || getStyle(renderTo, 'height'),
16170 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { target = e ? e.target : win;
16171  
16172 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Width and height checks for display:none. Target is doc in IE8 and
16173 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Opera, win in Firefox, Chrome and IE9.
16174 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!hasUserWidth &&
16175 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { !chart.isPrinting &&
16176 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { width &&
16177 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { height &&
16178 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (target === win || target === doc)
16179 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ) {
16180 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (
16181 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { width !== chart.containerWidth ||
16182 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { height !== chart.containerHeight
16183 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ) {
16184 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { clearTimeout(chart.reflowTimeout);
16185 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // When called from window.resize, e is set, else it's called
16186 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // directly (#2224)
16187 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.reflowTimeout = syncTimeout(function() {
16188 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Set size, it may have been destroyed in the meantime
16189 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // (#1257)
16190 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (chart.container) {
16191 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.setSize(undefined, undefined, false);
16192 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16193 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }, e ? 100 : 0);
16194 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16195 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.containerWidth = width;
16196 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.containerHeight = height;
16197 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16198 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
16199  
16200 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
16201 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Add the event handlers necessary for auto resizing
16202 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
16203 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { initReflow: function() {
16204 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var chart = this,
16205 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { unbind;
16206  
16207 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { unbind = addEvent(win, 'resize', function(e) {
16208 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.reflow(e);
16209 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
16210 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { addEvent(chart, 'destroy', unbind);
16211  
16212 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // The following will add listeners to re-fit the chart before and after
16213 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // printing (#2284). However it only works in WebKit. Should have worked
16214 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // in Firefox, but not supported in IE.
16215 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /*
16216 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (win.matchMedia) {
16217 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { win.matchMedia('print').addListener(function reflow() {
16218 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.reflow();
16219 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
16220 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16221 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
16222 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
16223  
16224 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
16225 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Resize the chart to a given width and height. In order to set the width
16226 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * only, the height argument may be skipped. To set the height only, pass
16227 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * `undefined for the width.
16228 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Number|undefined|null} [width]
16229 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * The new pixel width of the chart. Since v4.2.6, the argument can
16230 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * be `undefined` in order to preserve the current value (when
16231 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * setting height only), or `null` to adapt to the width of the
16232 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * containing element.
16233 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Number|undefined|null} [height]
16234 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * The new pixel height of the chart. Since v4.2.6, the argument can
16235 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * be `undefined` in order to preserve the current value, or `null`
16236 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * in order to adapt to the height of the containing element.
16237 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {AnimationOptions} [animation=true]
16238 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Whether and how to apply animation.
16239 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
16240 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @sample highcharts/members/chart-setsize-button/
16241 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Test resizing from buttons
16242 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @sample highcharts/members/chart-setsize-jquery-resizable/
16243 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Add a jQuery UI resizable
16244 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @sample stock/members/chart-setsize/
16245 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Highstock with UI resizable
16246 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
16247 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { setSize: function(width, height, animation) {
16248 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var chart = this,
16249 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { renderer = chart.renderer,
16250 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { globalAnimation;
16251  
16252 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Handle the isResizing counter
16253 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.isResizing += 1;
16254  
16255 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // set the animation for the current process
16256 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { H.setAnimation(animation, chart);
16257  
16258 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.oldChartHeight = chart.chartHeight;
16259 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.oldChartWidth = chart.chartWidth;
16260 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (width !== undefined) {
16261 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.options.chart.width = width;
16262 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16263 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (height !== undefined) {
16264 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.options.chart.height = height;
16265 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16266 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.getChartSize();
16267  
16268 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Resize the container with the global animation applied if enabled
16269 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // (#2503)
16270  
16271 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { globalAnimation = renderer.globalAnimation;
16272 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (globalAnimation ? animate : css)(chart.container, {
16273 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { width: chart.chartWidth + 'px',
16274 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { height: chart.chartHeight + 'px'
16275 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }, globalAnimation);
16276  
16277  
16278 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.setChartSize(true);
16279 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { renderer.setSize(chart.chartWidth, chart.chartHeight, animation);
16280  
16281 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // handle axes
16282 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(chart.axes, function(axis) {
16283 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { axis.isDirty = true;
16284 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { axis.setScale();
16285 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
16286  
16287 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.isDirtyLegend = true; // force legend redraw
16288 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.isDirtyBox = true; // force redraw of plot and chart border
16289  
16290 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.layOutTitles(); // #2857
16291 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.getMargins();
16292  
16293 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.redraw(animation);
16294  
16295  
16296 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.oldChartHeight = null;
16297 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fireEvent(chart, 'resize');
16298  
16299 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Fire endResize and set isResizing back. If animation is disabled,
16300 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // fire without delay
16301 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { syncTimeout(function() {
16302 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (chart) {
16303 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fireEvent(chart, 'endResize', null, function() {
16304 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.isResizing -= 1;
16305 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
16306 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16307 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }, animObject(globalAnimation).duration);
16308 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
16309  
16310 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
16311 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Set the public chart properties. This is done before and after the
16312 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * pre-render to determine margin sizes
16313 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
16314 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { setChartSize: function(skipAxes) {
16315 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var chart = this,
16316 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { inverted = chart.inverted,
16317 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { renderer = chart.renderer,
16318 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chartWidth = chart.chartWidth,
16319 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chartHeight = chart.chartHeight,
16320 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { optionsChart = chart.options.chart,
16321 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { spacing = chart.spacing,
16322 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { clipOffset = chart.clipOffset,
16323 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { clipX,
16324 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { clipY,
16325 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotLeft,
16326 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotTop,
16327 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotWidth,
16328 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotHeight,
16329 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotBorderWidth;
16330  
16331 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { function clipOffsetSide(side) {
16332 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var offset = clipOffset[side] || 0;
16333 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { return Math.max(plotBorderWidth || offset, offset) / 2;
16334 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16335  
16336 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.plotLeft = plotLeft = Math.round(chart.plotLeft);
16337 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.plotTop = plotTop = Math.round(chart.plotTop);
16338 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.plotWidth = plotWidth = Math.max(
16339 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 0,
16340 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { Math.round(chartWidth - plotLeft - chart.marginRight)
16341 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
16342 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.plotHeight = plotHeight = Math.max(
16343 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 0,
16344 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { Math.round(chartHeight - plotTop - chart.marginBottom)
16345 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
16346  
16347 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.plotSizeX = inverted ? plotHeight : plotWidth;
16348 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.plotSizeY = inverted ? plotWidth : plotHeight;
16349  
16350 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.plotBorderWidth = optionsChart.plotBorderWidth || 0;
16351  
16352 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Set boxes used for alignment
16353 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.spacingBox = renderer.spacingBox = {
16354 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { x: spacing[3],
16355 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { y: spacing[0],
16356 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { width: chartWidth - spacing[3] - spacing[1],
16357 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { height: chartHeight - spacing[0] - spacing[2]
16358 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
16359 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.plotBox = renderer.plotBox = {
16360 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { x: plotLeft,
16361 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { y: plotTop,
16362 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { width: plotWidth,
16363 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { height: plotHeight
16364 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
16365  
16366 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotBorderWidth = 2 * Math.floor(chart.plotBorderWidth / 2);
16367 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { clipX = Math.ceil(clipOffsetSide(3));
16368 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { clipY = Math.ceil(clipOffsetSide(0));
16369 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.clipBox = {
16370 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { x: clipX,
16371 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { y: clipY,
16372 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { width: Math.floor(
16373 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.plotSizeX -
16374 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { clipOffsetSide(1) -
16375 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { clipX
16376 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ),
16377 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { height: Math.max(
16378 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 0,
16379 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { Math.floor(
16380 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.plotSizeY -
16381 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { clipOffsetSide(2) -
16382 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { clipY
16383 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )
16384 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )
16385 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
16386  
16387 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!skipAxes) {
16388 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(chart.axes, function(axis) {
16389 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { axis.setAxisSize();
16390 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { axis.setAxisTranslation();
16391 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
16392 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16393 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
16394  
16395 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
16396 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Initial margins before auto size margins are applied
16397 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
16398 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { resetMargins: function() {
16399 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var chart = this,
16400 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chartOptions = chart.options.chart;
16401  
16402 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Create margin and spacing array
16403 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(['margin', 'spacing'], function splashArrays(target) {
16404 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var value = chartOptions[target],
16405 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { values = isObject(value) ? value : [value, value, value, value];
16406  
16407 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(['Top', 'Right', 'Bottom', 'Left'], function(sideName, side) {
16408 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart[target][side] = pick(
16409 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chartOptions[target + sideName],
16410 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { values[side]
16411 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
16412 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
16413 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
16414  
16415 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Set margin names like chart.plotTop, chart.plotLeft,
16416 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // chart.marginRight, chart.marginBottom.
16417 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(marginNames, function(m, side) {
16418 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart[m] = pick(chart.margin[side], chart.spacing[side]);
16419 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
16420 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.axisOffset = [0, 0, 0, 0]; // top, right, bottom, left
16421 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.clipOffset = [];
16422 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
16423  
16424 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
16425 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Draw the borders and backgrounds for chart and plot area
16426 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
16427 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { drawChartBox: function() {
16428 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var chart = this,
16429 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { optionsChart = chart.options.chart,
16430 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { renderer = chart.renderer,
16431 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chartWidth = chart.chartWidth,
16432 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chartHeight = chart.chartHeight,
16433 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chartBackground = chart.chartBackground,
16434 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotBackground = chart.plotBackground,
16435 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotBorder = chart.plotBorder,
16436 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chartBorderWidth,
16437  
16438 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotBGImage = chart.plotBGImage,
16439 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chartBackgroundColor = optionsChart.backgroundColor,
16440 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotBackgroundColor = optionsChart.plotBackgroundColor,
16441 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotBackgroundImage = optionsChart.plotBackgroundImage,
16442  
16443 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { mgn,
16444 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { bgAttr,
16445 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotLeft = chart.plotLeft,
16446 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotTop = chart.plotTop,
16447 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotWidth = chart.plotWidth,
16448 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotHeight = chart.plotHeight,
16449 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotBox = chart.plotBox,
16450 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { clipRect = chart.clipRect,
16451 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { clipBox = chart.clipBox,
16452 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { verb = 'animate';
16453  
16454 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Chart area
16455 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!chartBackground) {
16456 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.chartBackground = chartBackground = renderer.rect()
16457 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .addClass('highcharts-background')
16458 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .add();
16459 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { verb = 'attr';
16460 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16461  
16462  
16463 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Presentational
16464 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chartBorderWidth = optionsChart.borderWidth || 0;
16465 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { mgn = chartBorderWidth + (optionsChart.shadow ? 8 : 0);
16466  
16467 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { bgAttr = {
16468 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fill: chartBackgroundColor || 'none'
16469 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
16470  
16471 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (chartBorderWidth || chartBackground['stroke-width']) { // #980
16472 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { bgAttr.stroke = optionsChart.borderColor;
16473 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { bgAttr['stroke-width'] = chartBorderWidth;
16474 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16475 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chartBackground
16476 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .attr(bgAttr)
16477 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .shadow(optionsChart.shadow);
16478  
16479 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chartBackground[verb]({
16480 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { x: mgn / 2,
16481 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { y: mgn / 2,
16482 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { width: chartWidth - mgn - chartBorderWidth % 2,
16483 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { height: chartHeight - mgn - chartBorderWidth % 2,
16484 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { r: optionsChart.borderRadius
16485 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
16486  
16487 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Plot background
16488 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { verb = 'animate';
16489 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!plotBackground) {
16490 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { verb = 'attr';
16491 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.plotBackground = plotBackground = renderer.rect()
16492 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .addClass('highcharts-plot-background')
16493 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .add();
16494 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16495 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotBackground[verb](plotBox);
16496  
16497  
16498 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Presentational attributes for the background
16499 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotBackground
16500 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .attr({
16501 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fill: plotBackgroundColor || 'none'
16502 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { })
16503 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .shadow(optionsChart.plotShadow);
16504  
16505 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Create the background image
16506 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (plotBackgroundImage) {
16507 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!plotBGImage) {
16508 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.plotBGImage = renderer.image(
16509 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotBackgroundImage,
16510 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotLeft,
16511 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotTop,
16512 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotWidth,
16513 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotHeight
16514 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ).add();
16515 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } else {
16516 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotBGImage.animate(plotBox);
16517 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16518 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16519  
16520  
16521 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Plot clip
16522 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!clipRect) {
16523 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.clipRect = renderer.clipRect(clipBox);
16524 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } else {
16525 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { clipRect.animate({
16526 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { width: clipBox.width,
16527 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { height: clipBox.height
16528 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
16529 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16530  
16531 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Plot area border
16532 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { verb = 'animate';
16533 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!plotBorder) {
16534 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { verb = 'attr';
16535 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.plotBorder = plotBorder = renderer.rect()
16536 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .addClass('highcharts-plot-border')
16537 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .attr({
16538 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { zIndex: 1 // Above the grid
16539 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { })
16540 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .add();
16541 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16542  
16543  
16544 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Presentational
16545 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotBorder.attr({
16546 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { stroke: optionsChart.plotBorderColor,
16547 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'stroke-width': optionsChart.plotBorderWidth || 0,
16548 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fill: 'none'
16549 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
16550  
16551  
16552 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotBorder[verb](plotBorder.crisp({
16553 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { x: plotLeft,
16554 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { y: plotTop,
16555 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { width: plotWidth,
16556 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { height: plotHeight
16557 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }, -plotBorder.strokeWidth())); //#3282 plotBorder should be negative;
16558  
16559 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // reset
16560 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.isDirtyBox = false;
16561 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
16562  
16563 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
16564 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Detect whether a certain chart property is needed based on inspecting its
16565 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * options and series. This mainly applies to the chart.inverted property,
16566 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * and in extensions to the chart.angular and chart.polar properties.
16567 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
16568 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { propFromSeries: function() {
16569 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var chart = this,
16570 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { optionsChart = chart.options.chart,
16571 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { klass,
16572 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { seriesOptions = chart.options.series,
16573 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { i,
16574 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { value;
16575  
16576  
16577 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(['inverted', 'angular', 'polar'], function(key) {
16578  
16579 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // The default series type's class
16580 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { klass = seriesTypes[optionsChart.type ||
16581 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { optionsChart.defaultSeriesType];
16582  
16583 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Get the value from available chart-wide properties
16584 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { value =
16585 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { optionsChart[key] || // It is set in the options
16586 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (klass && klass.prototype[key]); // The default series class
16587 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // requires it
16588  
16589 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // 4. Check if any the chart's series require it
16590 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { i = seriesOptions && seriesOptions.length;
16591 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { while (!value && i--) {
16592 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { klass = seriesTypes[seriesOptions[i].type];
16593 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (klass && klass.prototype[key]) {
16594 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { value = true;
16595 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16596 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16597  
16598 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Set the chart property
16599 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart[key] = value;
16600 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
16601  
16602 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
16603  
16604 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
16605 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Link two or more series together. This is done initially from
16606 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Chart.render, and after Chart.addSeries and Series.remove.
16607 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
16608 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { linkSeries: function() {
16609 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var chart = this,
16610 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chartSeries = chart.series;
16611  
16612 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Reset links
16613 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(chartSeries, function(series) {
16614 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.linkedSeries.length = 0;
16615 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
16616  
16617 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Apply new links
16618 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(chartSeries, function(series) {
16619 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var linkedTo = series.options.linkedTo;
16620 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (isString(linkedTo)) {
16621 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (linkedTo === ':previous') {
16622 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { linkedTo = chart.series[series.index - 1];
16623 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } else {
16624 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { linkedTo = chart.get(linkedTo);
16625 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16626 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // #3341 avoid mutual linking
16627 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (linkedTo && linkedTo.linkedParent !== series) {
16628 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { linkedTo.linkedSeries.push(series);
16629 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.linkedParent = linkedTo;
16630 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.visible = pick(
16631 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.options.visible,
16632 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { linkedTo.options.visible,
16633 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.visible
16634 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ); // #3879
16635 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16636 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16637 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
16638 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
16639  
16640 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
16641 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Render series for the chart
16642 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
16643 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { renderSeries: function() {
16644 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(this.series, function(serie) {
16645 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { serie.translate();
16646 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { serie.render();
16647 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
16648 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
16649  
16650 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
16651 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Render labels for the chart
16652 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
16653 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { renderLabels: function() {
16654 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var chart = this,
16655 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { labels = chart.options.labels;
16656 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (labels.items) {
16657 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(labels.items, function(label) {
16658 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var style = extend(labels.style, label.style),
16659 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { x = pInt(style.left) + chart.plotLeft,
16660 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { y = pInt(style.top) + chart.plotTop + 12;
16661  
16662 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // delete to prevent rewriting in IE
16663 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { delete style.left;
16664 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { delete style.top;
16665  
16666 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.renderer.text(
16667 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { label.html,
16668 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { x,
16669 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { y
16670 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )
16671 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .attr({
16672 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { zIndex: 2
16673 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { })
16674 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .css(style)
16675 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .add();
16676  
16677 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
16678 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16679 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
16680  
16681 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
16682 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Render all graphics for the chart
16683 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
16684 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { render: function() {
16685 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var chart = this,
16686 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { axes = chart.axes,
16687 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { renderer = chart.renderer,
16688 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options = chart.options,
16689 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { tempWidth,
16690 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { tempHeight,
16691 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { redoHorizontal,
16692 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { redoVertical;
16693  
16694 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Title
16695 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.setTitle();
16696  
16697  
16698 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Legend
16699 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.legend = new Legend(chart, options.legend);
16700  
16701 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Get stacks
16702 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (chart.getStacks) {
16703 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.getStacks();
16704 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16705  
16706 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Get chart margins
16707 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.getMargins(true);
16708 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.setChartSize();
16709  
16710 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Record preliminary dimensions for later comparison
16711 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { tempWidth = chart.plotWidth;
16712 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { tempHeight = chart.plotHeight = chart.plotHeight - 21; // 21 is the most common correction for X axis labels
16713  
16714 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Get margins by pre-rendering axes
16715 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(axes, function(axis) {
16716 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { axis.setScale();
16717 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
16718 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.getAxisMargins();
16719  
16720 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // If the plot area size has changed significantly, calculate tick positions again
16721 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { redoHorizontal = tempWidth / chart.plotWidth > 1.1;
16722 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { redoVertical = tempHeight / chart.plotHeight > 1.05; // Height is more sensitive
16723  
16724 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (redoHorizontal || redoVertical) {
16725  
16726 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(axes, function(axis) {
16727 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if ((axis.horiz && redoHorizontal) || (!axis.horiz && redoVertical)) {
16728 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { axis.setTickInterval(true); // update to reflect the new margins
16729 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16730 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
16731 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.getMargins(); // second pass to check for new labels
16732 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16733  
16734 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Draw the borders and backgrounds
16735 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.drawChartBox();
16736  
16737  
16738 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Axes
16739 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (chart.hasCartesianSeries) {
16740 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(axes, function(axis) {
16741 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (axis.visible) {
16742 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { axis.render();
16743 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16744 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
16745 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16746  
16747 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // The series
16748 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!chart.seriesGroup) {
16749 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.seriesGroup = renderer.g('series-group')
16750 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .attr({
16751 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { zIndex: 3
16752 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { })
16753 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .add();
16754 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16755 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.renderSeries();
16756  
16757 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Labels
16758 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.renderLabels();
16759  
16760 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Credits
16761 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.addCredits();
16762  
16763 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Handle responsiveness
16764 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (chart.setResponsive) {
16765 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.setResponsive();
16766 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16767  
16768 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Set flag
16769 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.hasRendered = true;
16770  
16771 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
16772  
16773 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
16774 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Set a new credits label for the chart.
16775 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
16776 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {CreditOptions} options
16777 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * A configuration object for the new credits.
16778 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @sample highcharts/credits/credits-update/ Add and update credits
16779 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
16780 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { addCredits: function(credits) {
16781 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var chart = this;
16782  
16783 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { credits = merge(true, this.options.credits, credits);
16784 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (credits.enabled && !this.credits) {
16785  
16786 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
16787 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * The chart's credits label. The label has an `update` method that
16788 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * allows setting new options as per the {@link
16789 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * https://api.highcharts.com/highcharts/credits|
16790 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * credits options set}.
16791 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
16792 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @memberof Highcharts.Chart
16793 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @name credits
16794 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @type {Highcharts.SVGElement}
16795 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
16796 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.credits = this.renderer.text(
16797 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { credits.text + (this.mapCredits || ''),
16798 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 0,
16799  
16800 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )
16801 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .addClass('highcharts-credits')
16802 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .on('click', function() {
16803 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (credits.href) {
16804 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { win.location.href = credits.href;
16805 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16806 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { })
16807 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .attr({
16808 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { align: credits.position.align,
16809 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { zIndex: 8
16810 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { })
16811  
16812 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .css(credits.style)
16813  
16814 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .add()
16815 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { .align(credits.position);
16816  
16817 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Dynamically update
16818 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.credits.update = function(options) {
16819 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.credits = chart.credits.destroy();
16820 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.addCredits(options);
16821 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
16822 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16823 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
16824  
16825 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
16826 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Remove the chart and purge memory. This method is called internally
16827 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * before adding a second chart into the same container, as well as on
16828 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * window unload to prevent leaks.
16829 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
16830 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @sample highcharts/members/chart-destroy/
16831 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Destroy the chart from a button
16832 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @sample stock/members/chart-destroy/
16833 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Destroy with Highstock
16834 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
16835 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { destroy: function() {
16836 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var chart = this,
16837 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { axes = chart.axes,
16838 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series = chart.series,
16839 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { container = chart.container,
16840 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { i,
16841 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { parentNode = container && container.parentNode;
16842  
16843 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // fire the chart.destoy event
16844 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fireEvent(chart, 'destroy');
16845  
16846 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Delete the chart from charts lookup array
16847 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (chart.renderer.forExport) {
16848 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { H.erase(charts, chart); // #6569
16849 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } else {
16850 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { charts[chart.index] = undefined;
16851 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16852 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { H.chartCount--;
16853 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.renderTo.removeAttribute('data-highcharts-chart');
16854  
16855 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // remove events
16856 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { removeEvent(chart);
16857  
16858 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // ==== Destroy collections:
16859 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Destroy axes
16860 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { i = axes.length;
16861 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { while (i--) {
16862 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { axes[i] = axes[i].destroy();
16863 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16864  
16865 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Destroy scroller & scroller series before destroying base series
16866 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (this.scroller && this.scroller.destroy) {
16867 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.scroller.destroy();
16868 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16869  
16870 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Destroy each series
16871 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { i = series.length;
16872 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { while (i--) {
16873 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series[i] = series[i].destroy();
16874 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16875  
16876 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // ==== Destroy chart properties:
16877 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each([
16878 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'title', 'subtitle', 'chartBackground', 'plotBackground',
16879 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'plotBGImage', 'plotBorder', 'seriesGroup', 'clipRect', 'credits',
16880 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'pointer', 'rangeSelector', 'legend', 'resetZoomButton', 'tooltip',
16881 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'renderer'
16882 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ], function(name) {
16883 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var prop = chart[name];
16884  
16885 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (prop && prop.destroy) {
16886 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart[name] = prop.destroy();
16887 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16888 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
16889  
16890 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // remove container and all SVG
16891 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (container) { // can break in IE when destroyed before finished loading
16892 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { container.innerHTML = '';
16893 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { removeEvent(container);
16894 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (parentNode) {
16895 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { discardElement(container);
16896 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16897  
16898 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16899  
16900 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // clean it all up
16901 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { objectEach(chart, function(val, key) {
16902 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { delete chart[key];
16903 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
16904  
16905 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
16906  
16907  
16908 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
16909 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * VML namespaces can't be added until after complete. Listening
16910 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * for Perini's doScroll hack is not enough.
16911 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
16912 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { isReadyToRender: function() {
16913 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var chart = this;
16914  
16915 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Note: win == win.top is required
16916 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if ((!svg && (win == win.top && doc.readyState !== 'complete'))) { // eslint-disable-line eqeqeq
16917 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { doc.attachEvent('onreadystatechange', function() {
16918 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { doc.detachEvent('onreadystatechange', chart.firstRender);
16919 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (doc.readyState === 'complete') {
16920 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.firstRender();
16921 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16922 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
16923 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { return false;
16924 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16925 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { return true;
16926 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
16927  
16928 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
16929 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Prepare for first rendering after all data are loaded
16930 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
16931 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { firstRender: function() {
16932 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var chart = this,
16933 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options = chart.options;
16934  
16935 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Check whether the chart is ready to render
16936 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!chart.isReadyToRender()) {
16937 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { return;
16938 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16939  
16940 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Create the container
16941 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.getContainer();
16942  
16943 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Run an early event after the container and renderer are established
16944 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fireEvent(chart, 'init');
16945  
16946  
16947 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.resetMargins();
16948 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.setChartSize();
16949  
16950 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Set the common chart properties (mainly invert) from the given series
16951 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.propFromSeries();
16952  
16953 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // get axes
16954 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.getAxes();
16955  
16956 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Initialize the series
16957 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(options.series || [], function(serieOptions) {
16958 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.initSeries(serieOptions);
16959 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
16960  
16961 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.linkSeries();
16962  
16963 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Run an event after axes and series are initialized, but before render. At this stage,
16964 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // the series data is indexed and cached in the xData and yData arrays, so we can access
16965 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // those before rendering. Used in Highstock.
16966 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fireEvent(chart, 'beforeRender');
16967  
16968 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // depends on inverted and on margins being set
16969 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (Pointer) {
16970 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.pointer = new Pointer(chart, options);
16971 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16972  
16973 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.render();
16974  
16975 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Fire the load event if there are no external images
16976 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!chart.renderer.imgCount && chart.onload) {
16977 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.onload();
16978 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16979  
16980 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // If the chart was rendered outside the top container, put it back in (#3679)
16981 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.temporaryDisplay(true);
16982  
16983 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
16984  
16985 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
16986 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * On chart load
16987 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
16988 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { onload: function() {
16989  
16990 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Run callbacks
16991 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each([this.callback].concat(this.callbacks), function(fn) {
16992 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (fn && this.index !== undefined) { // Chart destroyed in its own callback (#3600)
16993 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fn.apply(this, [this]);
16994 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
16995 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }, this);
16996  
16997 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fireEvent(this, 'load');
16998 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fireEvent(this, 'render');
16999  
17000  
17001 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Set up auto resize, check for not destroyed (#6068)
17002 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (defined(this.index) && this.options.chart.reflow !== false) {
17003 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.initReflow();
17004 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17005  
17006 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Don't run again
17007 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.onload = null;
17008 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17009  
17010 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }); // end Chart
17011  
17012 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }(Highcharts));
17013 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (function(Highcharts) {
17014 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17015 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * (c) 2010-2017 Torstein Honsi
17016 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
17017 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * License: www.highcharts.com/license
17018 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17019 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var Point,
17020 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { H = Highcharts,
17021  
17022 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each = H.each,
17023 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { extend = H.extend,
17024 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { erase = H.erase,
17025 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fireEvent = H.fireEvent,
17026 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { format = H.format,
17027 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { isArray = H.isArray,
17028 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { isNumber = H.isNumber,
17029 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pick = H.pick,
17030 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { removeEvent = H.removeEvent;
17031  
17032 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17033 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * The Point object. The point objects are generated from the `series.data`
17034 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * configuration objects or raw numbers. They can be accessed from the
17035 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * `Series.points` array. Other ways to instaniate points are through {@link
17036 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Highcharts.Series#addPoint} or {@link Highcharts.Series#setData}.
17037 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
17038 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @class
17039 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17040  
17041 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { Highcharts.Point = Point = function() {};
17042 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { Highcharts.Point.prototype = {
17043  
17044 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17045 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Initialize the point. Called internally based on the series.data option.
17046 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Object} series The series object containing this point.
17047 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Object} options The data in either number, array or object
17048 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * format.
17049 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Number} x Optionally, the X value of the.
17050 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @returns {Object} The Point instance.
17051 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17052 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { init: function(series, options, x) {
17053  
17054 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var point = this,
17055 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { colors,
17056 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { colorCount = series.chart.options.chart.colorCount,
17057 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { colorIndex;
17058  
17059 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17060 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * The series object associated with the point.
17061 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
17062 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @name series
17063 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @memberof Highcharts.Point
17064 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @type Highcharts.Series
17065 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17066 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point.series = series;
17067  
17068  
17069 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17070 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * The point's current color.
17071 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @name color
17072 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @memberof Highcharts.Point
17073 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @type {Color}
17074 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17075 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point.color = series.color; // #3445
17076  
17077 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point.applyOptions(options, x);
17078  
17079 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (series.options.colorByPoint) {
17080  
17081 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { colors = series.options.colors || series.chart.options.colors;
17082 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point.color = point.color || colors[series.colorCounter];
17083 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { colorCount = colors.length;
17084  
17085 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { colorIndex = series.colorCounter;
17086 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.colorCounter++;
17087 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // loop back to zero
17088 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (series.colorCounter === colorCount) {
17089 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.colorCounter = 0;
17090 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17091 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } else {
17092 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { colorIndex = series.colorIndex;
17093 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17094 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point.colorIndex = pick(point.colorIndex, colorIndex);
17095  
17096 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.chart.pointCount++;
17097 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { return point;
17098 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
17099 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17100 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Apply the options containing the x and y data and possible some extra
17101 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * properties. Called on point init or from point.update.
17102 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
17103 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Object} options The point options as defined in series.data.
17104 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Number} x Optionally, the X value.
17105 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @returns {Object} The Point instance.
17106 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17107 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { applyOptions: function(options, x) {
17108 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var point = this,
17109 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series = point.series,
17110 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pointValKey = series.options.pointValKey || series.pointValKey;
17111  
17112 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options = Point.prototype.optionsToObject.call(this, options);
17113  
17114 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // copy options directly to point
17115 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { extend(point, options);
17116 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point.options = point.options ? extend(point.options, options) : options;
17117  
17118 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Since options are copied into the Point instance, some accidental options must be shielded (#5681)
17119 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (options.group) {
17120 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { delete point.group;
17121 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17122  
17123 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // For higher dimension series types. For instance, for ranges, point.y is mapped to point.low.
17124 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (pointValKey) {
17125 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point.y = point[pointValKey];
17126 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17127 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point.isNull = pick(
17128 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point.isValid && !point.isValid(),
17129 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point.x === null || !isNumber(point.y, true)
17130 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ); // #3571, check for NaN
17131  
17132 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // The point is initially selected by options (#5777)
17133 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (point.selected) {
17134 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point.state = 'select';
17135 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17136  
17137 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // If no x is set by now, get auto incremented value. All points must have an
17138 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // x value, however the y value can be null to create a gap in the series
17139 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if ('name' in point && x === undefined && series.xAxis && series.xAxis.hasNames) {
17140 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point.x = series.xAxis.nameToX(point);
17141 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17142 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (point.x === undefined && series) {
17143 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (x === undefined) {
17144 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point.x = series.autoIncrement(point);
17145 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } else {
17146 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point.x = x;
17147 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17148 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17149  
17150 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { return point;
17151 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
17152  
17153 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17154 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Transform number or array configs into objects
17155 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17156 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { optionsToObject: function(options) {
17157 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var ret = {},
17158 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series = this.series,
17159 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { keys = series.options.keys,
17160 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pointArrayMap = keys || series.pointArrayMap || ['y'],
17161 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { valueCount = pointArrayMap.length,
17162 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { firstItemType,
17163 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { i = 0,
17164 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { j = 0;
17165  
17166 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (isNumber(options) || options === null) {
17167 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ret[pointArrayMap[0]] = options;
17168  
17169 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } else if (isArray(options)) {
17170 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // with leading x value
17171 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!keys && options.length > valueCount) {
17172 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { firstItemType = typeof options[0];
17173 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (firstItemType === 'string') {
17174 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ret.name = options[0];
17175 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } else if (firstItemType === 'number') {
17176 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ret.x = options[0];
17177 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17178 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { i++;
17179 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17180 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { while (j < valueCount) {
17181 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!keys || options[i] !== undefined) { // Skip undefined positions for keys
17182 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ret[pointArrayMap[j]] = options[i];
17183 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17184 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { i++;
17185 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { j++;
17186 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17187 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } else if (typeof options === 'object') {
17188 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ret = options;
17189  
17190 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // This is the fastest way to detect if there are individual point dataLabels that need
17191 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // to be considered in drawDataLabels. These can only occur in object configs.
17192 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (options.dataLabels) {
17193 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series._hasPointLabels = true;
17194 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17195  
17196 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Same approach as above for markers
17197 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (options.marker) {
17198 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series._hasPointMarkers = true;
17199 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17200 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17201 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { return ret;
17202 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
17203  
17204 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17205 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Get the CSS class names for individual points
17206 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @returns {String} The class name
17207 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17208 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { getClassName: function() {
17209 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { return 'highcharts-point' +
17210 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (this.selected ? ' highcharts-point-select' : '') +
17211 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (this.negative ? ' highcharts-negative' : '') +
17212 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (this.isNull ? ' highcharts-null-point' : '') +
17213 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (this.colorIndex !== undefined ? ' highcharts-color-' +
17214 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.colorIndex : '') +
17215 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (this.options.className ? ' ' + this.options.className : '') +
17216 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (this.zone && this.zone.className ? ' ' +
17217 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.zone.className.replace('highcharts-negative', '') : '');
17218 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
17219  
17220 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17221 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Return the zone that the point belongs to
17222 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17223 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { getZone: function() {
17224 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var series = this.series,
17225 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { zones = series.zones,
17226 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { zoneAxis = series.zoneAxis || 'y',
17227 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { i = 0,
17228 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { zone;
17229  
17230 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { zone = zones[i];
17231 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { while (this[zoneAxis] >= zone.value) {
17232 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { zone = zones[++i];
17233 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17234  
17235 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (zone && zone.color && !this.options.color) {
17236 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.color = zone.color;
17237 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17238  
17239 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { return zone;
17240 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
17241  
17242 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17243 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Destroy a point to clear memory. Its reference still stays in series.data.
17244 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17245 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { destroy: function() {
17246 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var point = this,
17247 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series = point.series,
17248 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart = series.chart,
17249 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { hoverPoints = chart.hoverPoints,
17250 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { prop;
17251  
17252 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.pointCount--;
17253  
17254 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (hoverPoints) {
17255 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point.setState();
17256 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { erase(hoverPoints, point);
17257 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!hoverPoints.length) {
17258 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.hoverPoints = null;
17259 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17260  
17261 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17262 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (point === chart.hoverPoint) {
17263 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point.onMouseOut();
17264 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17265  
17266 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // remove all events
17267 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (point.graphic || point.dataLabel) { // removeEvent and destroyElements are performance expensive
17268 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { removeEvent(point);
17269 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point.destroyElements();
17270 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17271  
17272 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (point.legendItem) { // pies have legend items
17273 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.legend.destroyItem(point);
17274 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17275  
17276 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { for (prop in point) {
17277 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point[prop] = null;
17278 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17279  
17280  
17281 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
17282  
17283 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17284 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Destroy SVG elements associated with the point
17285 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17286 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { destroyElements: function() {
17287 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var point = this,
17288 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { props = ['graphic', 'dataLabel', 'dataLabelUpper', 'connector', 'shadowGroup'],
17289 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { prop,
17290 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { i = 6;
17291 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { while (i--) {
17292 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { prop = props[i];
17293 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (point[prop]) {
17294 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point[prop] = point[prop].destroy();
17295 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17296 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17297 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
17298  
17299 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17300 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Return the configuration hash needed for the data label and tooltip formatters
17301 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17302 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { getLabelConfig: function() {
17303 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { return {
17304 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { x: this.category,
17305 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { y: this.y,
17306 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { color: this.color,
17307 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { colorIndex: this.colorIndex,
17308 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { key: this.name || this.category,
17309 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series: this.series,
17310 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point: this,
17311 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { percentage: this.percentage,
17312 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { total: this.total || this.stackTotal
17313 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
17314 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
17315  
17316 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17317 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Extendable method for formatting each point's tooltip line
17318 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
17319 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @return {String} A string to be concatenated in to the common tooltip text
17320 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17321 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { tooltipFormatter: function(pointFormat) {
17322  
17323 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Insert options for valueDecimals, valuePrefix, and valueSuffix
17324 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var series = this.series,
17325 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { seriesTooltipOptions = series.tooltipOptions,
17326 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { valueDecimals = pick(seriesTooltipOptions.valueDecimals, ''),
17327 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { valuePrefix = seriesTooltipOptions.valuePrefix || '',
17328 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { valueSuffix = seriesTooltipOptions.valueSuffix || '';
17329  
17330 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Loop over the point array map and replace unformatted values with sprintf formatting markup
17331 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(series.pointArrayMap || ['y'], function(key) {
17332 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { key = '{point.' + key; // without the closing bracket
17333 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (valuePrefix || valueSuffix) {
17334 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pointFormat = pointFormat.replace(key + '}', valuePrefix + key + '}' + valueSuffix);
17335 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17336 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pointFormat = pointFormat.replace(key + '}', key + ':,.' + valueDecimals + 'f}');
17337 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
17338  
17339 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { return format(pointFormat, {
17340 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point: this,
17341 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series: this.series
17342 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
17343 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
17344  
17345 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17346 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Fire an event on the Point object.
17347 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {String} eventType
17348 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Object} eventArgs Additional event arguments
17349 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Function} defaultFunction Default event handler
17350 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17351 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { firePointEvent: function(eventType, eventArgs, defaultFunction) {
17352 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var point = this,
17353 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series = this.series,
17354 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { seriesOptions = series.options;
17355  
17356 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // load event handlers on demand to save time on mouseover/out
17357 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (seriesOptions.point.events[eventType] || (point.options && point.options.events && point.options.events[eventType])) {
17358 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.importEvents();
17359 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17360  
17361 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // add default handler if in selection mode
17362 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (eventType === 'click' && seriesOptions.allowPointSelect) {
17363 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { defaultFunction = function(event) {
17364 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Control key is for Windows, meta (= Cmd key) for Mac, Shift for Opera
17365 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (point.select) { // Could be destroyed by prior event handlers (#2911)
17366 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point.select(null, event.ctrlKey || event.metaKey || event.shiftKey);
17367 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17368 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
17369 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17370  
17371 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fireEvent(this, eventType, eventArgs, defaultFunction);
17372 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
17373  
17374 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17375 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * For certain series types, like pie charts, where individual points can
17376 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * be shown or hidden.
17377 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
17378 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @name visible
17379 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @memberOf Highcharts.Point
17380 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @type {Boolean}
17381 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17382 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { visible: true
17383 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
17384  
17385 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17386 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * For categorized axes this property holds the category name for the
17387 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * point. For other axes it holds the X value.
17388 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
17389 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @name category
17390 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @memberOf Highcharts.Point
17391 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @type {String|Number}
17392 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17393  
17394 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17395 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * The percentage for points in a stacked series or pies.
17396 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
17397 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @name percentage
17398 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @memberOf Highcharts.Point
17399 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @type {Number}
17400 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17401  
17402 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17403 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * The total of values in either a stack for stacked series, or a pie in a pie
17404 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * series.
17405 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
17406 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @name total
17407 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @memberOf Highcharts.Point
17408 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @type {Number}
17409 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17410  
17411 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17412 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * The x value of the point.
17413 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
17414 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @name x
17415 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @memberOf Highcharts.Point
17416 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @type {Number}
17417 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17418  
17419 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17420 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * The y value of the point.
17421 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
17422 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @name y
17423 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @memberOf Highcharts.Point
17424 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @type {Number}
17425 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17426  
17427 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }(Highcharts));
17428 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (function(H) {
17429 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17430 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * (c) 2010-2017 Torstein Honsi
17431 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
17432 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * License: www.highcharts.com/license
17433 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17434 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var addEvent = H.addEvent,
17435 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { animObject = H.animObject,
17436 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { arrayMax = H.arrayMax,
17437 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { arrayMin = H.arrayMin,
17438 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { correctFloat = H.correctFloat,
17439 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { Date = H.Date,
17440 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { defaultOptions = H.defaultOptions,
17441 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { defaultPlotOptions = H.defaultPlotOptions,
17442 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { defined = H.defined,
17443 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each = H.each,
17444 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { erase = H.erase,
17445 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { extend = H.extend,
17446 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fireEvent = H.fireEvent,
17447 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { grep = H.grep,
17448 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { isArray = H.isArray,
17449 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { isNumber = H.isNumber,
17450 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { isString = H.isString,
17451 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { LegendSymbolMixin = H.LegendSymbolMixin, // @todo add as a requirement
17452 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { merge = H.merge,
17453 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { objectEach = H.objectEach,
17454 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pick = H.pick,
17455 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { Point = H.Point, // @todo add as a requirement
17456 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { removeEvent = H.removeEvent,
17457 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { splat = H.splat,
17458 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { SVGElement = H.SVGElement,
17459 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { syncTimeout = H.syncTimeout,
17460 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { win = H.win;
17461  
17462 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17463 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * This is the base series prototype that all other series types inherit from.
17464 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * A new series is initiated either through the {@link https://api.highcharts.com/highcharts/series|
17465 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * series} option structure, or after the chart is initiated, through {@link
17466 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Highcharts.Chart#addSeries}.
17467 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
17468 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * The object can be accessed in a number of ways. All series and point event
17469 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * handlers give a reference to the `series` object. The chart object has a
17470 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * {@link Highcharts.Chart.series|series} property that is a collection of all
17471 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * the chart's series. The point objects and axis objects also have the same
17472 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * reference.
17473 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
17474 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Another way to reference the series programmatically is by `id`. Add an id
17475 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * in the series configuration options, and get the series object by {@link
17476 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Highcharts.Chart#get}.
17477 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
17478 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Configuration options for the series are given in three levels. Options for
17479 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * all series in a chart are given in the {@link https://api.highcharts.com/highcharts/plotOptions.series|
17480 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * plotOptions.series} object. Then options for all series of a specific type
17481 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * are given in the plotOptions of that type, for example `plotOptions.line`.
17482 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Next, options for one single series are given in the series array, or as
17483 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * arguements to `chart.addSeries`.
17484 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
17485 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * The data in the series is stored in various arrays.
17486 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
17487 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * - First, `series.options.data` contains all the original config options for
17488 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * each point whether added by options or methods like `series.addPoint`.
17489 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * - Next, `series.data` contains those values converted to points, but in case
17490 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * the series data length exceeds the `cropThreshold`, or if the data is grouped,
17491 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * `series.data` doesn't contain all the points. It only contains the points that
17492 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * have been created on demand.
17493 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * - Then there's `series.points` that contains all currently visible point
17494 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * objects. In case of cropping, the cropped-away points are not part of this
17495 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * array. The `series.points` array starts at `series.cropStart` compared to
17496 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * `series.data` and `series.options.data`. If however the series data is grouped,
17497 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * these can't be correlated one to one.
17498 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * - `series.xData` and `series.processedXData` contain clean x values, equivalent
17499 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * to `series.data` and `series.points`.
17500 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * - `series.yData` and `series.processedYData` contain clean y values, equivalent
17501 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * to `series.data` and `series.points`.
17502 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
17503 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @class Highcharts.Series
17504 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Highcharts.Chart} chart
17505 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * The chart instance.
17506 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Object} options
17507 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * The series options.
17508 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17509 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { H.Series = H.seriesType('line', null, { // base series options
17510  
17511 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //cursor: 'default',
17512 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //dashStyle: null,
17513 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //linecap: 'round',
17514 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { lineWidth: 2,
17515 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //shadow: false,
17516  
17517 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { allowPointSelect: false,
17518 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { showCheckbox: false,
17519 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { animation: {
17520 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { duration: 1000
17521 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
17522 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //clip: true,
17523 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //connectNulls: false,
17524 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //enableMouseTracking: true,
17525 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { events: {},
17526 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //legendIndex: 0,
17527 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // stacking: null,
17528 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { marker: {
17529  
17530 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { lineWidth: 0,
17531 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { lineColor: '#ffffff',
17532 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //fillColor: null,
17533  
17534 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //enabled: true,
17535 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //symbol: null,
17536 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { radius: 4,
17537 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { states: { // states for a single point
17538 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { hover: {
17539 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { animation: {
17540 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { duration: 50
17541 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
17542 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { enabled: true,
17543 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { radiusPlus: 2,
17544  
17545 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { lineWidthPlus: 1
17546  
17547 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
17548  
17549 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { select: {
17550 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fillColor: '#cccccc',
17551 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { lineColor: '#000000',
17552 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { lineWidth: 2
17553 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17554  
17555 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17556 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
17557 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point: {
17558 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { events: {}
17559 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
17560 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { dataLabels: {
17561 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { align: 'center',
17562 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // defer: true,
17563 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // enabled: false,
17564 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { formatter: function() {
17565 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { return this.y === null ? '' : H.numberFormat(this.y, -1);
17566 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
17567  
17568 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { style: {
17569 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fontSize: '11px',
17570 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fontWeight: 'bold',
17571 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { color: 'contrast',
17572 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { textOutline: '1px contrast'
17573 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
17574 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // backgroundColor: undefined,
17575 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // borderColor: undefined,
17576 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // borderWidth: undefined,
17577 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // shadow: false
17578  
17579 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { verticalAlign: 'bottom', // above singular point
17580 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { x: 0,
17581 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { y: 0,
17582 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // borderRadius: undefined,
17583 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { padding: 5
17584 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
17585 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // draw points outside the plot area when the number of points is less than
17586 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // this
17587 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { cropThreshold: 300,
17588 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pointRange: 0,
17589 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //pointStart: 0,
17590 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //pointInterval: 1,
17591 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //showInLegend: null, // auto = false for linked series
17592 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { softThreshold: true,
17593 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { states: { // states for the entire series
17594 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { hover: {
17595 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //enabled: false,
17596 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { animation: {
17597 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { duration: 50
17598 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
17599 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { lineWidthPlus: 1,
17600 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { marker: {
17601 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // lineWidth: base + 1,
17602 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // radius: base + 1
17603 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
17604 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { halo: {
17605 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { size: 10,
17606  
17607 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { opacity: 0.25
17608  
17609 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17610 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
17611 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { select: {
17612 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { marker: {}
17613 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17614 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
17615 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { stickyTracking: true,
17616 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //tooltip: {
17617 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //pointFormat: '<span style="color:{point.color}">\u25CF</span>' +
17618 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // '{series.name}: <b>{point.y}</b>'
17619 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //valueDecimals: null,
17620 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //xDateFormat: '%A, %b %e, %Y',
17621 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //valuePrefix: '',
17622 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //ySuffix: ''
17623 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { //}
17624 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { turboThreshold: 1000,
17625 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // zIndex: null
17626 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { findNearestPointBy: 'x'
17627  
17628 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }, /** @lends Highcharts.Series.prototype */ {
17629 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { isCartesian: true,
17630 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pointClass: Point,
17631 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { sorted: true, // requires the data to be sorted
17632 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { requireSorting: true,
17633 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { directTouch: false,
17634 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { axisTypes: ['xAxis', 'yAxis'],
17635 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { colorCounter: 0,
17636 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // each point's x and y values are stored in this.xData and this.yData
17637 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { parallelArrays: ['x', 'y'],
17638 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { coll: 'series',
17639 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { init: function(chart, options) {
17640 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var series = this,
17641 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { events,
17642 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chartSeries = chart.series,
17643 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { lastSeries;
17644  
17645 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17646 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Read only. The chart that the series belongs to.
17647 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
17648 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @name chart
17649 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @memberOf Series
17650 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @type {Chart}
17651 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17652 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.chart = chart;
17653  
17654 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17655 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Read only. The series' type, like "line", "area", "column" etc. The
17656 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * type in the series options anc can be altered using {@link
17657 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Series#update}.
17658 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
17659 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @name type
17660 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @memberOf Series
17661 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @type String
17662 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17663  
17664 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17665 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Read only. The series' current options. To update, use {@link
17666 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Series#update}.
17667 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
17668 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @name options
17669 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @memberOf Series
17670 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @type SeriesOptions
17671 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17672 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.options = options = series.setOptions(options);
17673 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.linkedSeries = [];
17674  
17675 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // bind the axes
17676 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.bindAxes();
17677  
17678 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // set some variables
17679 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { extend(series, {
17680 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17681 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * The series name as given in the options. Defaults to
17682 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * "Series {n}".
17683 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
17684 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @name name
17685 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @memberOf Series
17686 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @type {String}
17687 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17688 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { name: options.name,
17689 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { state: '',
17690 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17691 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Read only. The series' visibility state as set by {@link
17692 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Series#show}, {@link Series#hide}, or in the initial
17693 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * configuration.
17694 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
17695 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @name visible
17696 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @memberOf Series
17697 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @type {Boolean}
17698 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17699 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { visible: options.visible !== false, // true by default
17700 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17701 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Read only. The series' selected state as set by {@link
17702 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Highcharts.Series#select}.
17703 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
17704 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @name selected
17705 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @memberOf Series
17706 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @type {Boolean}
17707 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17708 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { selected: options.selected === true // false by default
17709 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
17710  
17711 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // register event listeners
17712 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { events = options.events;
17713  
17714 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { objectEach(events, function(event, eventType) {
17715 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { addEvent(series, eventType, event);
17716 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
17717 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (
17718 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (events && events.click) ||
17719 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (
17720 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options.point &&
17721 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options.point.events &&
17722 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options.point.events.click
17723 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ) ||
17724 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options.allowPointSelect
17725 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ) {
17726 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.runTrackerClick = true;
17727 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17728  
17729 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.getColor();
17730 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.getSymbol();
17731  
17732 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Set the data
17733 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(series.parallelArrays, function(key) {
17734 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series[key + 'Data'] = [];
17735 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
17736 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.setData(options.data, false);
17737  
17738 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Mark cartesian
17739 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (series.isCartesian) {
17740 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.hasCartesianSeries = true;
17741 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17742  
17743 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Get the index and register the series in the chart. The index is one
17744 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // more than the current latest series index (#5960).
17745 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (chartSeries.length) {
17746 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { lastSeries = chartSeries[chartSeries.length - 1];
17747 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17748 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series._i = pick(lastSeries && lastSeries._i, -1) + 1;
17749  
17750 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Insert the series and re-order all series above the insertion point.
17751 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.orderSeries(this.insert(chartSeries));
17752 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
17753  
17754 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17755 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Insert the series in a collection with other series, either the chart
17756 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * series or yAxis series, in the correct order according to the index
17757 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * option.
17758 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Array} collection A collection of series.
17759 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @returns {Number} The index of the series in the collection.
17760 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17761 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { insert: function(collection) {
17762 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var indexOption = this.options.index,
17763 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { i;
17764  
17765 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Insert by index option
17766 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (isNumber(indexOption)) {
17767 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { i = collection.length;
17768 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { while (i--) {
17769 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Loop down until the interted element has higher index
17770 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (indexOption >=
17771 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pick(collection[i].options.index, collection[i]._i)) {
17772 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { collection.splice(i + 1, 0, this);
17773 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { break;
17774 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17775 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17776 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (i === -1) {
17777 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { collection.unshift(this);
17778 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17779 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { i = i + 1;
17780  
17781 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Or just push it to the end
17782 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } else {
17783 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { collection.push(this);
17784 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17785 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { return pick(i, collection.length - 1);
17786 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
17787  
17788 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17789 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Set the xAxis and yAxis properties of cartesian series, and register the
17790 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * series in the `axis.series` array.
17791 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
17792 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @function #bindAxes
17793 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @memberOf Series
17794 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @returns {void}
17795 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17796 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { bindAxes: function() {
17797 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var series = this,
17798 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { seriesOptions = series.options,
17799 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart = series.chart,
17800 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { axisOptions;
17801  
17802 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // repeat for xAxis and yAxis
17803 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(series.axisTypes || [], function(AXIS) {
17804  
17805 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // loop through the chart's axis objects
17806 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(chart[AXIS], function(axis) {
17807 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { axisOptions = axis.options;
17808  
17809 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // apply if the series xAxis or yAxis option mathches the number
17810 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // of the axis, or if undefined, use the first axis
17811 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (
17812 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { seriesOptions[AXIS] === axisOptions.index ||
17813 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (
17814 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { seriesOptions[AXIS] !== undefined &&
17815 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { seriesOptions[AXIS] === axisOptions.id
17816 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ) ||
17817 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (
17818 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { seriesOptions[AXIS] === undefined &&
17819 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { axisOptions.index === 0
17820 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )
17821 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ) {
17822  
17823 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // register this series in the axis.series lookup
17824 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.insert(axis.series);
17825  
17826 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // set this series.xAxis or series.yAxis reference
17827 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17828 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Read only. The unique xAxis object associated with the
17829 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * series.
17830 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
17831 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @name xAxis
17832 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @memberOf Series
17833 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @type Axis
17834 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17835 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17836 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Read only. The unique yAxis object associated with the
17837 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * series.
17838 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
17839 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @name yAxis
17840 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @memberOf Series
17841 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @type Axis
17842 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17843 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series[AXIS] = axis;
17844  
17845 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // mark dirty for redraw
17846 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { axis.isDirty = true;
17847 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17848 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
17849  
17850 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // The series needs an X and an Y axis
17851 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!series[AXIS] && series.optionalAxis !== AXIS) {
17852 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { H.error(18, true);
17853 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17854  
17855 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
17856 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
17857  
17858 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17859 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * For simple series types like line and column, the data values are held in
17860 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * arrays like xData and yData for quick lookup to find extremes and more.
17861 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * For multidimensional series like bubble and map, this can be extended
17862 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * with arrays like zData and valueData by adding to the
17863 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * series.parallelArrays array.
17864 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17865 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { updateParallelArrays: function(point, i) {
17866 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var series = point.series,
17867 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { args = arguments,
17868 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fn = isNumber(i) ?
17869 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Insert the value in the given position
17870 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { function(key) {
17871 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var val = key === 'y' && series.toYData ?
17872 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.toYData(point) :
17873 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point[key];
17874 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series[key + 'Data'][i] = val;
17875 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } :
17876 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Apply the method specified in i with the following arguments
17877 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // as arguments
17878 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { function(key) {
17879 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { Array.prototype[i].apply(
17880 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series[key + 'Data'],
17881 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { Array.prototype.slice.call(args, 2)
17882 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
17883 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
17884  
17885 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(series.parallelArrays, fn);
17886 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
17887  
17888 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17889 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Return an auto incremented x value based on the pointStart and
17890 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * pointInterval options. This is only used if an x value is not given for
17891 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * the point that calls autoIncrement.
17892 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17893 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { autoIncrement: function() {
17894  
17895 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var options = this.options,
17896 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { xIncrement = this.xIncrement,
17897 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { date,
17898 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pointInterval,
17899 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pointIntervalUnit = options.pointIntervalUnit;
17900  
17901 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { xIncrement = pick(xIncrement, options.pointStart, 0);
17902  
17903 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.pointInterval = pointInterval = pick(
17904 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.pointInterval,
17905 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options.pointInterval,
17906 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 1
17907 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
17908  
17909 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Added code for pointInterval strings
17910 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (pointIntervalUnit) {
17911 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { date = new Date(xIncrement);
17912  
17913 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (pointIntervalUnit === 'day') {
17914 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { date = +date[Date.hcSetDate](
17915 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { date[Date.hcGetDate]() + pointInterval
17916 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
17917 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } else if (pointIntervalUnit === 'month') {
17918 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { date = +date[Date.hcSetMonth](
17919 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { date[Date.hcGetMonth]() + pointInterval
17920 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
17921 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } else if (pointIntervalUnit === 'year') {
17922 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { date = +date[Date.hcSetFullYear](
17923 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { date[Date.hcGetFullYear]() + pointInterval
17924 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
17925 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17926 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pointInterval = date - xIncrement;
17927  
17928 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17929  
17930 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.xIncrement = xIncrement + pointInterval;
17931 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { return xIncrement;
17932 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
17933  
17934 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
17935 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Set the series options by merging from the options tree
17936 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Object} itemOptions
17937 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
17938 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { setOptions: function(itemOptions) {
17939 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var chart = this.chart,
17940 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chartOptions = chart.options,
17941 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotOptions = chartOptions.plotOptions,
17942 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { userOptions = chart.userOptions || {},
17943 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { userPlotOptions = userOptions.plotOptions || {},
17944 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { typeOptions = plotOptions[this.type],
17945 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options,
17946 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { zones;
17947  
17948 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.userOptions = itemOptions;
17949  
17950 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // General series options take precedence over type options because
17951 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // otherwise, default type options like column.animation would be
17952 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // overwritten by the general option. But issues have been raised here
17953 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // (#3881), and the solution may be to distinguish between default
17954 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // option and userOptions like in the tooltip below.
17955 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options = merge(
17956 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { typeOptions,
17957 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotOptions.series,
17958 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { itemOptions
17959 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
17960  
17961 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // The tooltip options are merged between global and series specific
17962 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // options. Importance order asscendingly:
17963 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // globals: (1)tooltip, (2)plotOptions.series, (3)plotOptions[this.type]
17964 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // init userOptions with possible later updates: 4-6 like 1-3 and
17965 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // (7)this series options
17966 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.tooltipOptions = merge(
17967 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { defaultOptions.tooltip, // 1
17968 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { defaultOptions.plotOptions.series &&
17969 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { defaultOptions.plotOptions.series.tooltip, // 2
17970 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { defaultOptions.plotOptions[this.type].tooltip, // 3
17971 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chartOptions.tooltip.userOptions, // 4
17972 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotOptions.series && plotOptions.series.tooltip, // 5
17973 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotOptions[this.type].tooltip, // 6
17974 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { itemOptions.tooltip // 7
17975 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
17976  
17977 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // When shared tooltip, stickyTracking is true by default,
17978 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // unless user says otherwise.
17979 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.stickyTracking = pick(
17980 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { itemOptions.stickyTracking,
17981 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { userPlotOptions[this.type] &&
17982 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { userPlotOptions[this.type].stickyTracking,
17983 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { userPlotOptions.series && userPlotOptions.series.stickyTracking,
17984 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (
17985 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.tooltipOptions.shared && !this.noSharedTooltip ?
17986 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { true :
17987 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options.stickyTracking
17988 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )
17989 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
17990  
17991 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Delete marker object if not allowed (#1125)
17992 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (typeOptions.marker === null) {
17993 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { delete options.marker;
17994 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
17995  
17996 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Handle color zones
17997 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.zoneAxis = options.zoneAxis;
17998 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { zones = this.zones = (options.zones || []).slice();
17999 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (
18000 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (options.negativeColor || options.negativeFillColor) &&
18001 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { !options.zones
18002 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ) {
18003 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { zones.push({
18004 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { value: options[this.zoneAxis + 'Threshold'] ||
18005 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options.threshold ||
18006 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 0,
18007 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { className: 'highcharts-negative',
18008  
18009 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { color: options.negativeColor,
18010 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fillColor: options.negativeFillColor
18011  
18012 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
18013 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18014 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (zones.length) { // Push one extra zone for the rest
18015 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (defined(zones[zones.length - 1].value)) {
18016 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { zones.push({
18017  
18018 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { color: this.color,
18019 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { fillColor: this.fillColor
18020  
18021 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
18022 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18023 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18024 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { return options;
18025 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
18026  
18027 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { getCyclic: function(prop, value, defaults) {
18028 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var i,
18029 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart = this.chart,
18030 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { userOptions = this.userOptions,
18031 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { indexName = prop + 'Index',
18032 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { counterName = prop + 'Counter',
18033 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { len = defaults ? defaults.length : pick(
18034 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.options.chart[prop + 'Count'],
18035 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart[prop + 'Count']
18036 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ),
18037 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { setting;
18038  
18039 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!value) {
18040 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Pick up either the colorIndex option, or the _colorIndex after
18041 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Series.update()
18042 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { setting = pick(
18043 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { userOptions[indexName],
18044 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { userOptions['_' + indexName]
18045 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
18046 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (defined(setting)) { // after Series.update()
18047 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { i = setting;
18048 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } else {
18049 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // #6138
18050 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!chart.series.length) {
18051 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart[counterName] = 0;
18052 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18053 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { userOptions['_' + indexName] = i = chart[counterName] % len;
18054 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart[counterName] += 1;
18055 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18056 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (defaults) {
18057 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { value = defaults[i];
18058 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18059 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18060 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Set the colorIndex
18061 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (i !== undefined) {
18062 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this[indexName] = i;
18063 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18064 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this[prop] = value;
18065 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
18066  
18067 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
18068 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Get the series' color
18069 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
18070  
18071 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { getColor: function() {
18072 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (this.options.colorByPoint) {
18073 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // #4359, selected slice got series.color even when colorByPoint was
18074 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // set.
18075 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.options.color = null;
18076 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } else {
18077 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.getCyclic(
18078 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'color',
18079 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.options.color || defaultPlotOptions[this.type].color,
18080 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.chart.options.colors
18081 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
18082 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18083 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
18084  
18085 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
18086 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Get the series' symbol
18087 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
18088 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { getSymbol: function() {
18089 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var seriesMarkerOption = this.options.marker;
18090  
18091 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.getCyclic(
18092 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 'symbol',
18093 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { seriesMarkerOption.symbol,
18094 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.chart.options.symbols
18095 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
18096 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
18097  
18098 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { drawLegendSymbol: LegendSymbolMixin.drawLineMarker,
18099  
18100 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
18101 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Apply a new set of data to the series and optionally redraw it. The new
18102 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * data array is passed by reference (except in case of `updatePoints`), and
18103 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * may later be mutated when updating the chart data.
18104 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
18105 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Note the difference in behaviour when setting the same amount of points,
18106 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * or a different amount of points, as handled by the `updatePoints`
18107 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * parameter.
18108 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
18109 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {SeriesDataOptions} data
18110 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Takes an array of data in the same format as described under
18111 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * `series<type>data` for the given series type.
18112 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Boolean} [redraw=true]
18113 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Whether to redraw the chart after the series is altered. If doing
18114 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * more operations on the chart, it is a good idea to set redraw to
18115 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * false and call {@link Chart#redraw} after.
18116 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {AnimationOptions} [animation]
18117 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * When the updated data is the same length as the existing data,
18118 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * points will be updated by default, and animation visualizes how
18119 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * the points are changed. Set false to disable animation, or a
18120 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * configuration object to set duration or easing.
18121 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @param {Boolean} [updatePoints=true]
18122 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * When the updated data is the same length as the existing data,
18123 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * points will be updated instead of replaced. This allows updating
18124 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * with animation and performs better. In this case, the original
18125 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * array is not passed by reference. Set false to prevent.
18126 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
18127 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @sample highcharts/members/series-setdata/
18128 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Set new data from a button
18129 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @sample highcharts/members/series-setdata-pie/
18130 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Set data in a pie
18131 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @sample stock/members/series-setdata/
18132 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Set new data in Highstock
18133 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @sample maps/members/series-setdata/
18134 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Set new data in Highmaps
18135 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
18136 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { setData: function(data, redraw, animation, updatePoints) {
18137 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var series = this,
18138 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { oldData = series.points,
18139 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { oldDataLength = (oldData && oldData.length) || 0,
18140 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { dataLength,
18141 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options = series.options,
18142 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart = series.chart,
18143 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { firstPoint = null,
18144 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { xAxis = series.xAxis,
18145 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { i,
18146 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { turboThreshold = options.turboThreshold,
18147 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pt,
18148 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { xData = this.xData,
18149 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { yData = this.yData,
18150 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pointArrayMap = series.pointArrayMap,
18151 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { valueCount = pointArrayMap && pointArrayMap.length;
18152  
18153 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { data = data || [];
18154 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { dataLength = data.length;
18155 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { redraw = pick(redraw, true);
18156  
18157 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // If the point count is the same as is was, just run Point.update which
18158 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // is cheaper, allows animation, and keeps references to points.
18159 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (
18160 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { updatePoints !== false &&
18161 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { dataLength &&
18162 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { oldDataLength === dataLength &&
18163 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { !series.cropped &&
18164 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { !series.hasGroupedData &&
18165 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.visible
18166 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ) {
18167 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(data, function(point, i) {
18168 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // .update doesn't exist on a linked, hidden series (#3709)
18169 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (oldData[i].update && point !== options.data[i]) {
18170 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { oldData[i].update(point, false, null, false);
18171 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18172 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
18173  
18174 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } else {
18175  
18176 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Reset properties
18177 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.xIncrement = null;
18178  
18179 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.colorCounter = 0; // for series with colorByPoint (#1547)
18180  
18181 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Update parallel arrays
18182 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { each(this.parallelArrays, function(key) {
18183 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series[key + 'Data'].length = 0;
18184 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { });
18185  
18186 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // In turbo mode, only one- or twodimensional arrays of numbers are
18187 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // allowed. The first value is tested, and we assume that all the
18188 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // rest are defined the same way. Although the 'for' loops are
18189 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // similar, they are repeated inside each if-else conditional for
18190 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // max performance.
18191 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (turboThreshold && dataLength > turboThreshold) {
18192  
18193 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // find the first non-null point
18194 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { i = 0;
18195 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { while (firstPoint === null && i < dataLength) {
18196 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { firstPoint = data[i];
18197 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { i++;
18198 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18199  
18200  
18201 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (isNumber(firstPoint)) { // assume all points are numbers
18202 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { for (i = 0; i < dataLength; i++) {
18203 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { xData[i] = this.autoIncrement();
18204 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { yData[i] = data[i];
18205 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18206  
18207 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Assume all points are arrays when first point is
18208 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } else if (isArray(firstPoint)) {
18209 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (valueCount) { // [x, low, high] or [x, o, h, l, c]
18210 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { for (i = 0; i < dataLength; i++) {
18211 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pt = data[i];
18212 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { xData[i] = pt[0];
18213 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { yData[i] = pt.slice(1, valueCount + 1);
18214 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18215 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } else { // [x, y]
18216 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { for (i = 0; i < dataLength; i++) {
18217 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pt = data[i];
18218 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { xData[i] = pt[0];
18219 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { yData[i] = pt[1];
18220 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18221 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18222 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } else {
18223 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Highcharts expects configs to be numbers or arrays in
18224 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // turbo mode
18225 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { H.error(12);
18226 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18227 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } else {
18228 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { for (i = 0; i < dataLength; i++) {
18229 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (data[i] !== undefined) { // stray commas in oldIE
18230 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pt = {
18231 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series: series
18232 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
18233 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.pointClass.prototype.applyOptions.apply(
18234 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pt, [data[i]]
18235 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
18236 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.updateParallelArrays(pt, i);
18237 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18238 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18239 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18240  
18241 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Forgetting to cast strings to numbers is a common caveat when
18242 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // handling CSV or JSON
18243 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (isString(yData[0])) {
18244 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { H.error(14, true);
18245 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18246  
18247 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
18248 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Read only. An array containing the series' data point objects. To
18249 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * modify the data, use {@link Highcharts.Series#setData} or {@link
18250 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Highcharts.Point#update}.
18251 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
18252 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @name data
18253 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @memberOf Highcharts.Series
18254 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @type {Array.<Highcharts.Point>}
18255 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
18256 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.data = [];
18257 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.options.data = series.userOptions.data = data;
18258  
18259 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // destroy old points
18260 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { i = oldDataLength;
18261 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { while (i--) {
18262 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (oldData[i] && oldData[i].destroy) {
18263 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { oldData[i].destroy();
18264 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18265 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18266  
18267 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // reset minRange (#878)
18268 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (xAxis) {
18269 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { xAxis.minRange = xAxis.userMinRange;
18270 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18271  
18272 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // redraw
18273 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.isDirty = chart.isDirtyBox = true;
18274 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.isDirtyData = !!oldData;
18275 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { animation = false;
18276 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18277  
18278 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Typically for pie series, points need to be processed and generated
18279 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // prior to rendering the legend
18280 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (options.legendType === 'point') {
18281 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.processData();
18282 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.generatePoints();
18283 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18284  
18285 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (redraw) {
18286 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { chart.redraw(animation);
18287 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18288 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
18289  
18290 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
18291 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Process the data by cropping away unused data points if the series is
18292 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * longer than the crop threshold. This saves computing time for large
18293 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * series.
18294 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
18295 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { processData: function(force) {
18296 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var series = this,
18297 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { processedXData = series.xData, // copied during slice operation
18298 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { processedYData = series.yData,
18299 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { dataLength = processedXData.length,
18300 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { croppedData,
18301 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { cropStart = 0,
18302 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { cropped,
18303 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { distance,
18304 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { closestPointRange,
18305 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { xAxis = series.xAxis,
18306 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { i, // loop variable
18307 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options = series.options,
18308 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { cropThreshold = options.cropThreshold,
18309 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { getExtremesFromAll =
18310 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.getExtremesFromAll ||
18311 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options.getExtremesFromAll, // #4599
18312 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { isCartesian = series.isCartesian,
18313 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { xExtremes,
18314 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { val2lin = xAxis && xAxis.val2lin,
18315 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { isLog = xAxis && xAxis.isLog,
18316 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { min,
18317 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { max;
18318  
18319 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // If the series data or axes haven't changed, don't go through this.
18320 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Return false to pass the message on to override methods like in data
18321 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // grouping.
18322 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (
18323 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { isCartesian &&
18324 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { !series.isDirty &&
18325 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { !xAxis.isDirty &&
18326 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { !series.yAxis.isDirty &&
18327 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { !force
18328 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ) {
18329 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { return false;
18330 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18331  
18332 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (xAxis) {
18333 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { xExtremes = xAxis.getExtremes(); // corrected for log axis (#3053)
18334 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { min = xExtremes.min;
18335 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { max = xExtremes.max;
18336 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18337  
18338 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // optionally filter out points outside the plot area
18339 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (
18340 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { isCartesian &&
18341 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.sorted &&
18342 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { !getExtremesFromAll &&
18343 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (!cropThreshold || dataLength > cropThreshold || series.forceCrop)
18344 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ) {
18345  
18346 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // it's outside current extremes
18347 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (
18348 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { processedXData[dataLength - 1] < min ||
18349 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { processedXData[0] > max
18350 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ) {
18351 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { processedXData = [];
18352 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { processedYData = [];
18353  
18354 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // only crop if it's actually spilling out
18355 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } else if (
18356 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { processedXData[0] < min ||
18357 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { processedXData[dataLength - 1] > max
18358 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ) {
18359 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { croppedData = this.cropData(
18360 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.xData,
18361 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.yData,
18362 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { min,
18363 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { max
18364 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
18365 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { processedXData = croppedData.xData;
18366 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { processedYData = croppedData.yData;
18367 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { cropStart = croppedData.start;
18368 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { cropped = true;
18369 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18370 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18371  
18372  
18373 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Find the closest distance between processed points
18374 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { i = processedXData.length || 1;
18375 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { while (--i) {
18376 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { distance = isLog ?
18377 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { val2lin(processedXData[i]) - val2lin(processedXData[i - 1]) :
18378 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { processedXData[i] - processedXData[i - 1];
18379  
18380 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (
18381 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { distance > 0 &&
18382 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (
18383 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { closestPointRange === undefined ||
18384 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { distance < closestPointRange
18385 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )
18386 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ) {
18387 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { closestPointRange = distance;
18388  
18389 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Unsorted data is not supported by the line tooltip, as well as
18390 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // data grouping and navigation in Stock charts (#725) and width
18391 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // calculation of columns (#1900)
18392 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } else if (distance < 0 && series.requireSorting) {
18393 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { H.error(15);
18394 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18395 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18396  
18397 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Record the properties
18398 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.cropped = cropped; // undefined or true
18399 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.cropStart = cropStart;
18400 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.processedXData = processedXData;
18401 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.processedYData = processedYData;
18402  
18403 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.closestPointRange = closestPointRange;
18404  
18405 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
18406  
18407 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
18408 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Iterate over xData and crop values between min and max. Returns object
18409 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * containing crop start/end cropped xData with corresponding part of yData,
18410 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * dataMin and dataMax within the cropped range
18411 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
18412 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { cropData: function(xData, yData, min, max) {
18413 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var dataLength = xData.length,
18414 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { cropStart = 0,
18415 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { cropEnd = dataLength,
18416 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // line-type series need one point outside
18417 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { cropShoulder = pick(this.cropShoulder, 1),
18418 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { i,
18419 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { j;
18420  
18421 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // iterate up to find slice start
18422 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { for (i = 0; i < dataLength; i++) {
18423 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (xData[i] >= min) {
18424 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { cropStart = Math.max(0, i - cropShoulder);
18425 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { break;
18426 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18427 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18428  
18429 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // proceed to find slice end
18430 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { for (j = i; j < dataLength; j++) {
18431 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (xData[j] > max) {
18432 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { cropEnd = j + cropShoulder;
18433 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { break;
18434 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18435 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18436  
18437 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { return {
18438 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { xData: xData.slice(cropStart, cropEnd),
18439 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { yData: yData.slice(cropStart, cropEnd),
18440 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { start: cropStart,
18441 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { end: cropEnd
18442 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { };
18443 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
18444  
18445  
18446 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
18447 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Generate the data point after the data has been processed by cropping
18448 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * away unused points and optionally grouped in Highcharts Stock.
18449 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
18450 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { generatePoints: function() {
18451 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var series = this,
18452 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options = series.options,
18453 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { dataOptions = options.data,
18454 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { data = series.data,
18455 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { dataLength,
18456 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { processedXData = series.processedXData,
18457 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { processedYData = series.processedYData,
18458 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { PointClass = series.pointClass,
18459 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { processedDataLength = processedXData.length,
18460 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { cropStart = series.cropStart || 0,
18461 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { cursor,
18462 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { hasGroupedData = series.hasGroupedData,
18463 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { keys = options.keys,
18464 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point,
18465 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { points = [],
18466 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { i;
18467  
18468 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!data && !hasGroupedData) {
18469 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var arr = [];
18470 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { arr.length = dataOptions.length;
18471 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { data = series.data = arr;
18472 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18473  
18474 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (keys && hasGroupedData) {
18475 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // grouped data has already applied keys (#6590)
18476 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.options.keys = false;
18477 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18478  
18479 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { for (i = 0; i < processedDataLength; i++) {
18480 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { cursor = cropStart + i;
18481 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!hasGroupedData) {
18482 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point = data[cursor];
18483 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!point && dataOptions[cursor] !== undefined) { // #970
18484 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { data[cursor] = point = (new PointClass()).init(
18485 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series,
18486 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { dataOptions[cursor],
18487 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { processedXData[i]
18488 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
18489 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18490 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } else {
18491 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // splat the y data in case of ohlc data array
18492 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point = (new PointClass()).init(
18493 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series, [processedXData[i]].concat(splat(processedYData[i]))
18494 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
18495  
18496 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
18497 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Highstock only. If a point object is created by data
18498 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * grouping, it doesn't reflect actual points in the raw data.
18499 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * In this case, the `dataGroup` property holds information
18500 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * that points back to the raw data.
18501 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
18502 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * - `dataGroup.start` is the index of the first raw data point
18503 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * in the group.
18504 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * - `dataGroup.length` is the amount of points in the group.
18505 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
18506 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @name dataGroup
18507 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @memberOf Point
18508 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @type {Object}
18509 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
18510 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
18511 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point.dataGroup = series.groupMap[i];
18512 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18513 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (point) { // #6279
18514 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point.index = cursor; // For faster access in Point.update
18515 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { points[i] = point;
18516 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18517 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18518  
18519 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // restore keys options (#6590)
18520 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.options.keys = keys;
18521  
18522 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Hide cropped-away points - this only runs when the number of points
18523 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // is above cropThreshold, or when swithching view from non-grouped
18524 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // data to grouped data (#637)
18525 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (
18526 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { data &&
18527 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (
18528 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { processedDataLength !== (dataLength = data.length) ||
18529 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { hasGroupedData
18530 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )
18531 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ) {
18532 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { for (i = 0; i < dataLength; i++) {
18533 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // when has grouped data, clear all points
18534 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (i === cropStart && !hasGroupedData) {
18535 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { i += processedDataLength;
18536 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18537 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (data[i]) {
18538 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { data[i].destroyElements();
18539 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { data[i].plotX = undefined; // #1003
18540 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18541 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18542 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18543  
18544 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.data = data;
18545 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.points = points;
18546 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
18547  
18548 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
18549 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Calculate Y extremes for visible data
18550 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
18551 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { getExtremes: function(yData) {
18552 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var xAxis = this.xAxis,
18553 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { yAxis = this.yAxis,
18554 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { xData = this.processedXData,
18555 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { yDataLength,
18556 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { activeYData = [],
18557 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { activeCounter = 0,
18558 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // #2117, need to compensate for log X axis
18559 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { xExtremes = xAxis.getExtremes(),
18560 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { xMin = xExtremes.min,
18561 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { xMax = xExtremes.max,
18562 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { validValue,
18563 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { withinRange,
18564 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { x,
18565 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { y,
18566 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { i,
18567 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { j;
18568  
18569 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { yData = yData || this.stackedYData || this.processedYData || [];
18570 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { yDataLength = yData.length;
18571  
18572 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { for (i = 0; i < yDataLength; i++) {
18573  
18574 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { x = xData[i];
18575 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { y = yData[i];
18576  
18577 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // For points within the visible range, including the first point
18578 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // outside the visible range, consider y extremes
18579 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { validValue =
18580 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (isNumber(y, true) || isArray(y)) &&
18581 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (!yAxis.positiveValuesOnly || (y.length || y > 0));
18582 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { withinRange =
18583 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.getExtremesFromAll ||
18584 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.options.getExtremesFromAll ||
18585 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.cropped ||
18586 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ((xData[i] || x) >= xMin && (xData[i] || x) <= xMax);
18587  
18588 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (validValue && withinRange) {
18589  
18590 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { j = y.length;
18591 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (j) { // array, like ohlc or range data
18592 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { while (j--) {
18593 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (y[j] !== null) {
18594 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { activeYData[activeCounter++] = y[j];
18595 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18596 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18597 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { } else {
18598 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { activeYData[activeCounter++] = y;
18599 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18600 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18601 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18602  
18603 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.dataMin = arrayMin(activeYData);
18604 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.dataMax = arrayMax(activeYData);
18605 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { },
18606  
18607 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { /**
18608 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * Translate data points from raw data values to chart specific positioning
18609 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * data needed later in drawPoints, drawGraph and drawTracker.
18610 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { *
18611 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @function #translate
18612 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @memberOf Series
18613 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { * @returns {void}
18614 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { */
18615 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { translate: function() {
18616 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (!this.processedXData) { // hidden series
18617 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.processData();
18618 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18619 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.generatePoints();
18620 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var series = this,
18621 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { options = series.options,
18622 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { stacking = options.stacking,
18623 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { xAxis = series.xAxis,
18624 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { categories = xAxis.categories,
18625 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { yAxis = series.yAxis,
18626 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { points = series.points,
18627 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { dataLength = points.length,
18628 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { hasModifyValue = !!series.modifyValue,
18629 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { i,
18630 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pointPlacement = options.pointPlacement,
18631 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { dynamicallyPlaced =
18632 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pointPlacement === 'between' ||
18633 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { isNumber(pointPlacement),
18634 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { threshold = options.threshold,
18635 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { stackThreshold = options.startFromThreshold ? threshold : 0,
18636 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotX,
18637 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotY,
18638 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { lastPlotX,
18639 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { stackIndicator,
18640 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { closestPointRangePx = Number.MAX_VALUE;
18641  
18642 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Point placement is relative to each series pointRange (#5889)
18643 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (pointPlacement === 'between') {
18644 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pointPlacement = 0.5;
18645 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18646 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (isNumber(pointPlacement)) {
18647 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pointPlacement *= pick(options.pointRange || xAxis.pointRange);
18648 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18649  
18650 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Translate each point
18651 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { for (i = 0; i < dataLength; i++) {
18652 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { var point = points[i],
18653 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { xValue = point.x,
18654 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { yValue = point.y,
18655 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { yBottom = point.low,
18656 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { stack = stacking && yAxis.stacks[(
18657 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.negStacks &&
18658 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { yValue < (stackThreshold ? 0 : threshold) ? '-' : ''
18659 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ) + series.stackKey],
18660 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pointStack,
18661 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { stackValues;
18662  
18663 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Discard disallowed y values for log axes (#3434)
18664 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (yAxis.positiveValuesOnly && yValue !== null && yValue <= 0) {
18665 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point.isNull = true;
18666 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18667  
18668 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Get the plotX translation
18669 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point.plotX = plotX = correctFloat( // #5236
18670 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { Math.min(Math.max(-1e5, xAxis.translate(
18671 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { xValue,
18672 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 0,
18673 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 0,
18674 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 0,
18675 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { 1,
18676 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pointPlacement,
18677 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { this.type === 'flags'
18678 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { )), 1e5) // #3923
18679 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
18680  
18681 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Calculate the bottom y value for stacked series
18682 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (
18683 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { stacking &&
18684 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.visible &&
18685 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { !point.isNull &&
18686 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { stack &&
18687 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { stack[xValue]
18688 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ) {
18689 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { stackIndicator = series.getStackIndicator(
18690 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { stackIndicator,
18691 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { xValue,
18692 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.index
18693 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
18694 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pointStack = stack[xValue];
18695 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { stackValues = pointStack.points[stackIndicator.key];
18696 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { yBottom = stackValues[0];
18697 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { yValue = stackValues[1];
18698  
18699 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (
18700 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { yBottom === stackThreshold &&
18701 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { stackIndicator.key === stack[xValue].base
18702 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { ) {
18703 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { yBottom = pick(threshold, yAxis.min);
18704 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18705 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (yAxis.positiveValuesOnly && yBottom <= 0) { // #1200, #1232
18706 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { yBottom = null;
18707 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18708  
18709 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point.total = point.stackTotal = pointStack.total;
18710 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point.percentage =
18711 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pointStack.total &&
18712 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (point.y / pointStack.total * 100);
18713 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point.stackY = yValue;
18714  
18715 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Place the stack label
18716 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { pointStack.setOffset(
18717 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.pointXOffset || 0,
18718 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { series.barW || 0
18719 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { );
18720  
18721 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18722  
18723 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Set translated yBottom or remove it
18724 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point.yBottom = defined(yBottom) ?
18725 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { yAxis.translate(yBottom, 0, 1, 0, 1) :
18726 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { null;
18727  
18728 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // general hook, used for Highstock compare mode
18729 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { if (hasModifyValue) {
18730 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { yValue = series.modifyValue(yValue, point);
18731 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { }
18732  
18733 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { // Set the the plotY value, reset it for redraws
18734 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point.plotY = plotY =
18735 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { (typeof yValue === 'number' && yValue !== Infinity) ?
18736 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { Math.min(Math.max(-1e5,
18737 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { yAxis.translate(yValue, 0, 1, 0, 1)), 1e5) : // #3201
18738 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { undefined;
18739  
18740 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { point.isInside =
18741 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotY !== undefined &&
18742 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotY >= 0 &&
18743 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) { plotY <= yAxis.len && // #3519
18744 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && / plotX >= 0 &&
18745 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && / plotX <= xAxis.len;
18746  
18747  
18748 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len; // Set client related positions for mouse tracking
18749 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len; point.clientX = dynamicallyPlaced ?
18750 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len; correctFloat(
18751 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len; xAxis.translate(xValue, 0, 0, 0, 1, pointPlacement)
18752 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len; ) :
18753 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len; plotX; // #1514, #5383, #5518
18754  
18755 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len; point.negative = point.y < (threshold || 0);
18756  
18757 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); // some API data
18758 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); point.category = categories && categories[point.x] !== undefined ?
18759 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); categories[point.x] : point.x;
18760  
18761 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); // Determine auto enabling of markers (#3635, #5099)
18762 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); if (!point.isNull) {
18763 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); if (lastPlotX !== undefined) {
18764 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); closestPointRangePx = Math.min(
18765 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); closestPointRangePx,
18766 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); Math.abs(plotX - lastPlotX)
18767 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); );
18768 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
18769 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); lastPlotX = plotX;
18770 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
18771  
18772 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); // Find point zone
18773 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); point.zone = this.zones.length && point.getZone();
18774 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
18775 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); series.closestPointRangePx = closestPointRangePx;
18776 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); },
18777  
18778 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); /**
18779 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); * Return the series points with null points filtered out
18780 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); */
18781 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); getValidPoints: function(points, insideOnly) {
18782 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); var chart = this.chart;
18783 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); // #3916, #5029, #5085
18784 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); return grep(points || this.points || [], function isValidPoint(point) {
18785 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); if (insideOnly && !chart.isInsidePlot(
18786 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); point.plotX,
18787 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); point.plotY,
18788 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); chart.inverted
18789 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); )) {
18790 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); return false;
18791 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
18792 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); return !point.isNull;
18793 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); });
18794 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); },
18795  
18796 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); /**
18797 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); * Set the clipping for the series. For animated series it is called twice,
18798 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); * first to initiate animating the clip then the second time without the
18799 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); * animation to set the final clip.
18800 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); */
18801 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); setClip: function(animation) {
18802 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); var chart = this.chart,
18803 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); options = this.options,
18804 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); renderer = chart.renderer,
18805 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); inverted = chart.inverted,
18806 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); seriesClipBox = this.clipBox,
18807 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); clipBox = seriesClipBox || chart.clipBox,
18808 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); sharedClipKey =
18809 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); this.sharedClipKey || [
18810 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); '_sharedClip',
18811 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); animation && animation.duration,
18812 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); animation && animation.easing,
18813 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); clipBox.height,
18814 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); options.xAxis,
18815 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); options.yAxis
18816 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); ].join(','), // #4526
18817 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); clipRect = chart[sharedClipKey],
18818 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); markerClipRect = chart[sharedClipKey + 'm'];
18819  
18820 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); // If a clipping rectangle with the same properties is currently present
18821 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); // in the chart, use that.
18822 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); if (!clipRect) {
18823  
18824 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); // When animation is set, prepare the initial positions
18825 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); if (animation) {
18826 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); clipBox.width = 0;
18827  
18828 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); chart[sharedClipKey + 'm'] = markerClipRect = renderer.clipRect(-99, // include the width of the first marker
18829 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); inverted ? -chart.plotLeft : -chart.plotTop,
18830 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); 99,
18831 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); inverted ? chart.chartWidth : chart.chartHeight
18832 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); );
18833 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
18834 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); chart[sharedClipKey] = clipRect = renderer.clipRect(clipBox);
18835 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); // Create hashmap for series indexes
18836 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); clipRect.count = {
18837 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); length: 0
18838 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); };
18839  
18840 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
18841 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); if (animation) {
18842 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); if (!clipRect.count[this.index]) {
18843 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); clipRect.count[this.index] = true;
18844 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); clipRect.count.length += 1;
18845 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
18846 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
18847  
18848 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); if (options.clip !== false) {
18849 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); this.group.clip(animation || seriesClipBox ? clipRect : chart.clipRect);
18850 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); this.markerGroup.clip(markerClipRect);
18851 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); this.sharedClipKey = sharedClipKey;
18852 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
18853  
18854 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); // Remove the shared clipping rectangle when all series are shown
18855 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); if (!animation) {
18856 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); if (clipRect.count[this.index]) {
18857 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); delete clipRect.count[this.index];
18858 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); clipRect.count.length -= 1;
18859 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
18860  
18861 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); if (clipRect.count.length === 0 && sharedClipKey && chart[sharedClipKey]) {
18862 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); if (!seriesClipBox) {
18863 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); chart[sharedClipKey] = chart[sharedClipKey].destroy();
18864 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
18865 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); if (chart[sharedClipKey + 'm']) {
18866 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); chart[sharedClipKey + 'm'] = chart[sharedClipKey + 'm'].destroy();
18867 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
18868 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
18869 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
18870 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); },
18871  
18872 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); /**
18873 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); * Animate in the series
18874 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); */
18875 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); animate: function(init) {
18876 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); var series = this,
18877 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); chart = series.chart,
18878 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); clipRect,
18879 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); animation = animObject(series.options.animation),
18880 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); sharedClipKey;
18881  
18882 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); // Initialize the animation. Set up the clipping rectangle.
18883 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); if (init) {
18884  
18885 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); series.setClip(animation);
18886  
18887 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); // Run the animation
18888 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); } else {
18889 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); sharedClipKey = this.sharedClipKey;
18890 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); clipRect = chart[sharedClipKey];
18891 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); if (clipRect) {
18892 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); clipRect.animate({
18893 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); width: chart.plotSizeX
18894 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }, animation);
18895 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
18896 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); if (chart[sharedClipKey + 'm']) {
18897 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); chart[sharedClipKey + 'm'].animate({
18898 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); width: chart.plotSizeX + 99
18899 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }, animation);
18900 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
18901  
18902 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); // Delete this function to allow it only once
18903 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); series.animate = null;
18904  
18905 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); }
18906 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); },
18907  
18908 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); /**
18909 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); * This runs after animation to land on the final plot clipping
18910 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); */
18911 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); afterAnimate: function() {
18912 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); this.setClip();
18913 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); fireEvent(this, 'afterAnimate');
18914 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); },
18915  
18916 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); /**
18917 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); * Draw the markers.
18918 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); *
18919 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); * @function #drawPoints
18920 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); * @memberOf Series
18921 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); * @returns {void}
18922 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); */
18923 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); drawPoints: function() {
18924 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); var series = this,
18925 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); points = series.points,
18926 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); chart = series.chart,
18927 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); plotY,
18928 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); i,
18929 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); point,
18930 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); symbol,
18931 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); graphic,
18932 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); options = series.options,
18933 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); seriesMarkerOptions = options.marker,
18934 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); pointMarkerOptions,
18935 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); hasPointMarker,
18936 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); enabled,
18937 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); isInside,
18938 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); markerGroup = series[series.specialGroup] || series.markerGroup,
18939 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); xAxis = series.xAxis,
18940 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); markerAttribs,
18941 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); globallyEnabled = pick(
18942 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); seriesMarkerOptions.enabled,
18943 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); xAxis.isRadial ? true : null,
18944 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); // Use larger or equal as radius is null in bubbles (#6321)
18945 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); series.closestPointRangePx >= 2 * seriesMarkerOptions.radius
18946 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); );
18947  
18948 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); if (seriesMarkerOptions.enabled !== false || series._hasPointMarkers) {
18949  
18950 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0); for (i = 0; i < points.length; i++) {
18951 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { point = points[i];
18952 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { plotY = point.plotY;
18953 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { graphic = point.graphic;
18954 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { pointMarkerOptions = point.marker || {};
18955 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { hasPointMarker = !!point.marker;
18956 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { enabled = (globallyEnabled && pointMarkerOptions.enabled === undefined) || pointMarkerOptions.enabled;
18957 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { isInside = point.isInside;
18958  
18959 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // only draw the point if y is defined
18960 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (enabled && isNumber(plotY) && point.y !== null) {
18961  
18962 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Shortcuts
18963 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { symbol = pick(pointMarkerOptions.symbol, series.symbol);
18964 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { point.hasImage = symbol.indexOf('url') === 0;
18965  
18966 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { markerAttribs = series.markerAttribs(
18967 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { point,
18968 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { point.selected && 'select'
18969 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { );
18970  
18971 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (graphic) { // update
18972 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { graphic[isInside ? 'show' : 'hide'](true) // Since the marker group isn't clipped, each individual marker must be toggled
18973 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { .animate(markerAttribs);
18974 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { } else if (isInside && (markerAttribs.width > 0 || point.hasImage)) {
18975 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { point.graphic = graphic = chart.renderer.symbol(
18976 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { symbol,
18977 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { markerAttribs.x,
18978 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { markerAttribs.y,
18979 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { markerAttribs.width,
18980 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { markerAttribs.height,
18981 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { hasPointMarker ? pointMarkerOptions : seriesMarkerOptions
18982 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { )
18983 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { .add(markerGroup);
18984 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
18985  
18986  
18987 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Presentational attributes
18988 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (graphic) {
18989 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { graphic.attr(series.pointAttribs(point, point.selected && 'select'));
18990 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
18991  
18992  
18993 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (graphic) {
18994 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { graphic.addClass(point.getClassName(), true);
18995 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
18996  
18997 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { } else if (graphic) {
18998 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { point.graphic = graphic.destroy(); // #1269
18999 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19000 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19001 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19002  
19003 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { },
19004  
19005 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { /**
19006 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { * Get non-presentational attributes for the point.
19007 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { */
19008 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { markerAttribs: function(point, state) {
19009 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { var seriesMarkerOptions = this.options.marker,
19010 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { seriesStateOptions,
19011 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { pointMarkerOptions = point.marker || {},
19012 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { pointStateOptions,
19013 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { radius = pick(
19014 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { pointMarkerOptions.radius,
19015 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { seriesMarkerOptions.radius
19016 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { ),
19017 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { attribs;
19018  
19019 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Handle hover and select states
19020 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (state) {
19021 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { seriesStateOptions = seriesMarkerOptions.states[state];
19022 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { pointStateOptions = pointMarkerOptions.states &&
19023 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { pointMarkerOptions.states[state];
19024  
19025 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { radius = pick(
19026 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { pointStateOptions && pointStateOptions.radius,
19027 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { seriesStateOptions && seriesStateOptions.radius,
19028 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { radius + (seriesStateOptions && seriesStateOptions.radiusPlus || 0)
19029 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { );
19030 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19031  
19032 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (point.hasImage) {
19033 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { radius = 0; // and subsequently width and height is not set
19034 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19035  
19036 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { attribs = {
19037 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { x: Math.floor(point.plotX) - radius, // Math.floor for #1843
19038 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { y: point.plotY - radius
19039 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { };
19040  
19041 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (radius) {
19042 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { attribs.width = attribs.height = 2 * radius;
19043 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19044  
19045 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { return attribs;
19046  
19047 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { },
19048  
19049  
19050 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { /**
19051 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { * Get presentational attributes for marker-based series (line, spline, scatter, bubble, mappoint...)
19052 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { */
19053 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { pointAttribs: function(point, state) {
19054 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { var seriesMarkerOptions = this.options.marker,
19055 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { seriesStateOptions,
19056 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { pointOptions = point && point.options,
19057 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { pointMarkerOptions = (pointOptions && pointOptions.marker) || {},
19058 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { pointStateOptions,
19059 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { color = this.color,
19060 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { pointColorOption = pointOptions && pointOptions.color,
19061 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { pointColor = point && point.color,
19062 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { strokeWidth = pick(
19063 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { pointMarkerOptions.lineWidth,
19064 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { seriesMarkerOptions.lineWidth
19065 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { ),
19066 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { zoneColor = point && point.zone && point.zone.color,
19067 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { fill,
19068 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { stroke;
19069  
19070 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { color = pointColorOption || zoneColor || pointColor || color;
19071 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { fill = pointMarkerOptions.fillColor || seriesMarkerOptions.fillColor || color;
19072 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { stroke = pointMarkerOptions.lineColor || seriesMarkerOptions.lineColor || color;
19073  
19074 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Handle hover and select states
19075 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (state) {
19076 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { seriesStateOptions = seriesMarkerOptions.states[state];
19077 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { pointStateOptions = (pointMarkerOptions.states && pointMarkerOptions.states[state]) || {};
19078 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { strokeWidth = pick(
19079 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { pointStateOptions.lineWidth,
19080 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { seriesStateOptions.lineWidth,
19081 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { strokeWidth + pick(
19082 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { pointStateOptions.lineWidthPlus,
19083 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { seriesStateOptions.lineWidthPlus,
19084  
19085 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { )
19086 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { );
19087 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { fill = pointStateOptions.fillColor || seriesStateOptions.fillColor || fill;
19088 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { stroke = pointStateOptions.lineColor || seriesStateOptions.lineColor || stroke;
19089 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19090  
19091 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { return {
19092 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { 'stroke': stroke,
19093 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { 'stroke-width': strokeWidth,
19094 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { 'fill': fill
19095 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { };
19096 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { },
19097  
19098 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { /**
19099 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { * Clear DOM objects and free up memory
19100 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { */
19101 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { destroy: function() {
19102 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { var series = this,
19103 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { chart = series.chart,
19104 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { issue134 = /AppleWebKit\/533/.test(win.navigator.userAgent),
19105 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { destroy,
19106 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { i,
19107 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { data = series.data || [],
19108 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { point,
19109 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { axis;
19110  
19111 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // add event hook
19112 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { fireEvent(series, 'destroy');
19113  
19114 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // remove all events
19115 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { removeEvent(series);
19116  
19117 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // erase from axes
19118 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { each(series.axisTypes || [], function(AXIS) {
19119 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { axis = series[AXIS];
19120 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (axis && axis.series) {
19121 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { erase(axis.series, series);
19122 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { axis.isDirty = axis.forceRedraw = true;
19123 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19124 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { });
19125  
19126 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // remove legend items
19127 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (series.legendItem) {
19128 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { series.chart.legend.destroyItem(series);
19129 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19130  
19131 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // destroy all points with their elements
19132 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { i = data.length;
19133 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { while (i--) {
19134 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { point = data[i];
19135 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (point && point.destroy) {
19136 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { point.destroy();
19137 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19138 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19139 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { series.points = null;
19140  
19141 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Clear the animation timeout if we are destroying the series during initial animation
19142 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { clearTimeout(series.animationTimeout);
19143  
19144 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Destroy all SVGElements associated to the series
19145 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { objectEach(series, function(val, prop) {
19146 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (val instanceof SVGElement && !val.survive) { // Survive provides a hook for not destroying
19147  
19148 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // issue 134 workaround
19149 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { destroy = issue134 && prop === 'group' ?
19150 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { 'hide' :
19151 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { 'destroy';
19152  
19153 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { val[destroy]();
19154 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19155 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { });
19156  
19157 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // remove from hoverSeries
19158 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (chart.hoverSeries === series) {
19159 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { chart.hoverSeries = null;
19160 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19161 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { erase(chart.series, series);
19162 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { chart.orderSeries();
19163  
19164 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // clear all members
19165 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { objectEach(series, function(val, prop) {
19166 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { delete series[prop];
19167 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { });
19168 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { },
19169  
19170 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { /**
19171 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { * Get the graph path
19172 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { */
19173 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { getGraphPath: function(points, nullsAsZeroes, connectCliffs) {
19174 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { var series = this,
19175 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { options = series.options,
19176 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { step = options.step,
19177 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { reversed,
19178 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { graphPath = [],
19179 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { xMap = [],
19180 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { gap;
19181  
19182 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { points = points || series.points;
19183  
19184 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Bottom of a stack is reversed
19185 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { reversed = points.reversed;
19186 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (reversed) {
19187 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { points.reverse();
19188 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19189 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Reverse the steps (#5004)
19190 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { step = {
19191 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { right: 1,
19192 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { center: 2
19193 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }[step] || (step && 3);
19194 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (step && reversed) {
19195 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { step = 4 - step;
19196 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19197  
19198 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Remove invalid points, especially in spline (#5015)
19199 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (options.connectNulls && !nullsAsZeroes && !connectCliffs) {
19200 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { points = this.getValidPoints(points);
19201 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19202  
19203 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Build the line
19204 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { each(points, function(point, i) {
19205  
19206 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { var plotX = point.plotX,
19207 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { plotY = point.plotY,
19208 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { lastPoint = points[i - 1],
19209 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { pathToPoint; // the path to this point from the previous
19210  
19211 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if ((point.leftCliff || (lastPoint && lastPoint.rightCliff)) && !connectCliffs) {
19212 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { gap = true; // ... and continue
19213 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19214  
19215 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Line series, nullsAsZeroes is not handled
19216 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (point.isNull && !defined(nullsAsZeroes) && i > 0) {
19217 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { gap = !options.connectNulls;
19218  
19219 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Area series, nullsAsZeroes is set
19220 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { } else if (point.isNull && !nullsAsZeroes) {
19221 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { gap = true;
19222  
19223 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { } else {
19224  
19225 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (i === 0 || gap) {
19226 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { pathToPoint = ['M', point.plotX, point.plotY];
19227  
19228 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { } else if (series.getPointSpline) { // generate the spline as defined in the SplineSeries object
19229  
19230 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { pathToPoint = series.getPointSpline(points, point, i);
19231  
19232 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { } else if (step) {
19233  
19234 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (step === 1) { // right
19235 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { pathToPoint = [
19236 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { 'L',
19237 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { lastPoint.plotX,
19238 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { plotY
19239 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { ];
19240  
19241 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { } else if (step === 2) { // center
19242 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { pathToPoint = [
19243 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { 'L',
19244 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { (lastPoint.plotX + plotX) / 2,
19245 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { lastPoint.plotY,
19246 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { 'L',
19247 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { (lastPoint.plotX + plotX) / 2,
19248 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { plotY
19249 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { ];
19250  
19251 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { } else {
19252 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { pathToPoint = [
19253 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { 'L',
19254 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { plotX,
19255 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { lastPoint.plotY
19256 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { ];
19257 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19258 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { pathToPoint.push('L', plotX, plotY);
19259  
19260 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { } else {
19261 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // normal line to next point
19262 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { pathToPoint = [
19263 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { 'L',
19264 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { plotX,
19265 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { plotY
19266 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { ];
19267 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19268  
19269 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Prepare for animation. When step is enabled, there are two path nodes for each x value.
19270 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { xMap.push(point.x);
19271 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (step) {
19272 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { xMap.push(point.x);
19273 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19274  
19275 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { graphPath.push.apply(graphPath, pathToPoint);
19276 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { gap = false;
19277 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19278 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { });
19279  
19280 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { graphPath.xMap = xMap;
19281 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { series.graphPath = graphPath;
19282  
19283 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { return graphPath;
19284  
19285 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { },
19286  
19287 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { /**
19288 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { * Draw the actual graph
19289 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { */
19290 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { drawGraph: function() {
19291 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { var series = this,
19292 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { options = this.options,
19293 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { graphPath = (this.gappedPath || this.getGraphPath).call(this),
19294 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { props = [
19295 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { [
19296 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { 'graph',
19297 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { 'highcharts-graph',
19298  
19299 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { options.lineColor || this.color,
19300 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { options.dashStyle
19301  
19302 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { ]
19303 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { ];
19304  
19305 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Add the zone properties if any
19306 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { each(this.zones, function(zone, i) {
19307 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { props.push([
19308 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { 'zone-graph-' + i,
19309 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { 'highcharts-graph highcharts-zone-graph-' + i + ' ' + (zone.className || ''),
19310  
19311 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { zone.color || series.color,
19312 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { zone.dashStyle || options.dashStyle
19313  
19314 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { ]);
19315 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { });
19316  
19317 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Draw the graph
19318 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { each(props, function(prop, i) {
19319 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { var graphKey = prop[0],
19320 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { graph = series[graphKey],
19321 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { attribs;
19322  
19323 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (graph) {
19324 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { graph.endX = graphPath.xMap;
19325 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { graph.animate({
19326 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { d: graphPath
19327 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { });
19328  
19329 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { } else if (graphPath.length) { // #1487
19330  
19331 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { series[graphKey] = series.chart.renderer.path(graphPath)
19332 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { .addClass(prop[1])
19333 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { .attr({
19334 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { zIndex: 1
19335 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }) // #1069
19336 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { .add(series.group);
19337  
19338  
19339 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { attribs = {
19340 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { 'stroke': prop[2],
19341 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { 'stroke-width': options.lineWidth,
19342 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { 'fill': (series.fillGraph && series.color) || 'none' // Polygon series use filled graph
19343 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { };
19344  
19345 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (prop[3]) {
19346 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { attribs.dashstyle = prop[3];
19347 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { } else if (options.linecap !== 'square') {
19348 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { attribs['stroke-linecap'] = attribs['stroke-linejoin'] = 'round';
19349 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19350  
19351 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { graph = series[graphKey]
19352 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { .attr(attribs)
19353 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { .shadow((i < 2) && options.shadow); // add shadow to normal series (0) or to first zone (1) #3932
19354  
19355 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19356  
19357 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Helpers for animation
19358 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (graph) {
19359 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { graph.startX = graphPath.xMap;
19360 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { //graph.shiftUnit = options.step ? 2 : 1;
19361 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { graph.isArea = graphPath.isArea; // For arearange animation
19362 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19363 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { });
19364 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { },
19365  
19366 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { /**
19367 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { * Clip the graphs into the positive and negative coloured graphs
19368 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { */
19369 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { applyZones: function() {
19370 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { var series = this,
19371 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { chart = this.chart,
19372 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { renderer = chart.renderer,
19373 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { zones = this.zones,
19374 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { translatedFrom,
19375 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { translatedTo,
19376 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { clips = this.clips || [],
19377 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { clipAttr,
19378 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { graph = this.graph,
19379 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { area = this.area,
19380 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { chartSizeMax = Math.max(chart.chartWidth, chart.chartHeight),
19381 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { axis = this[(this.zoneAxis || 'y') + 'Axis'],
19382 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { extremes,
19383 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { reversed,
19384 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { inverted = chart.inverted,
19385 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { horiz,
19386 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { pxRange,
19387 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { pxPosMin,
19388 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { pxPosMax,
19389 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { ignoreZones = false;
19390  
19391 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (zones.length && (graph || area) && axis && axis.min !== undefined) {
19392 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { reversed = axis.reversed;
19393 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { horiz = axis.horiz;
19394 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // The use of the Color Threshold assumes there are no gaps
19395 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // so it is safe to hide the original graph and area
19396 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (graph) {
19397 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { graph.hide();
19398 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19399 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (area) {
19400 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { area.hide();
19401 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19402  
19403 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Create the clips
19404 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { extremes = axis.getExtremes();
19405 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { each(zones, function(threshold, i) {
19406  
19407 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { translatedFrom = reversed ?
19408 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { (horiz ? chart.plotWidth : 0) :
19409 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { (horiz ? 0 : axis.toPixels(extremes.min));
19410 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { translatedFrom = Math.min(Math.max(pick(translatedTo, translatedFrom), 0), chartSizeMax);
19411 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { translatedTo = Math.min(Math.max(Math.round(axis.toPixels(pick(threshold.value, extremes.max), true)), 0), chartSizeMax);
19412  
19413 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (ignoreZones) {
19414 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { translatedFrom = translatedTo = axis.toPixels(extremes.max);
19415 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19416  
19417 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { pxRange = Math.abs(translatedFrom - translatedTo);
19418 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { pxPosMin = Math.min(translatedFrom, translatedTo);
19419 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { pxPosMax = Math.max(translatedFrom, translatedTo);
19420 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (axis.isXAxis) {
19421 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { clipAttr = {
19422 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { x: inverted ? pxPosMax : pxPosMin,
19423 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { y: 0,
19424 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { width: pxRange,
19425 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { height: chartSizeMax
19426 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { };
19427 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (!horiz) {
19428 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { clipAttr.x = chart.plotHeight - clipAttr.x;
19429 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19430 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { } else {
19431 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { clipAttr = {
19432 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { x: 0,
19433 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { y: inverted ? pxPosMax : pxPosMin,
19434 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { width: chartSizeMax,
19435 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { height: pxRange
19436 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { };
19437 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (horiz) {
19438 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { clipAttr.y = chart.plotWidth - clipAttr.y;
19439 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19440 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19441  
19442  
19443 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { /// VML SUPPPORT
19444 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (inverted && renderer.isVML) {
19445 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (axis.isXAxis) {
19446 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { clipAttr = {
19447 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { x: 0,
19448 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { y: reversed ? pxPosMin : pxPosMax,
19449 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { height: clipAttr.width,
19450 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { width: chart.chartWidth
19451 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { };
19452 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { } else {
19453 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { clipAttr = {
19454 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { x: clipAttr.y - chart.plotLeft - chart.spacingBox.x,
19455 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { y: 0,
19456 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { width: clipAttr.height,
19457 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { height: chart.chartHeight
19458 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { };
19459 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19460 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19461 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { /// END OF VML SUPPORT
19462  
19463  
19464 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (clips[i]) {
19465 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { clips[i].animate(clipAttr);
19466 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { } else {
19467 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { clips[i] = renderer.clipRect(clipAttr);
19468  
19469 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (graph) {
19470 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { series['zone-graph-' + i].clip(clips[i]);
19471 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19472  
19473 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (area) {
19474 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { series['zone-area-' + i].clip(clips[i]);
19475 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19476 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19477 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // if this zone extends out of the axis, ignore the others
19478 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { ignoreZones = threshold.value > extremes.max;
19479 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { });
19480 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { this.clips = clips;
19481 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19482 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { },
19483  
19484 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { /**
19485 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { * Initialize and perform group inversion on series.group and series.markerGroup
19486 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { */
19487 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { invertGroups: function(inverted) {
19488 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { var series = this,
19489 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { chart = series.chart,
19490 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { remover;
19491  
19492 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { function setInvert() {
19493 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { each(['group', 'markerGroup'], function(groupName) {
19494 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (series[groupName]) {
19495  
19496 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // VML/HTML needs explicit attributes for flipping
19497 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (chart.renderer.isVML) {
19498 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { series[groupName].attr({
19499 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { width: series.yAxis.len,
19500 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { height: series.xAxis.len
19501 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { });
19502 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19503  
19504 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { series[groupName].width = series.yAxis.len;
19505 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { series[groupName].height = series.xAxis.len;
19506 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { series[groupName].invert(inverted);
19507 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19508 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { });
19509 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19510  
19511 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Pie, go away (#1736)
19512 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (!series.xAxis) {
19513 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { return;
19514 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19515  
19516 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // A fixed size is needed for inversion to work
19517 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { remover = addEvent(chart, 'resize', setInvert);
19518 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { addEvent(series, 'destroy', remover);
19519  
19520 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Do it now
19521 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { setInvert(inverted); // do it now
19522  
19523 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // On subsequent render and redraw, just do setInvert without setting up events again
19524 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { series.invertGroups = setInvert;
19525 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { },
19526  
19527 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { /**
19528 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { * General abstraction for creating plot groups like series.group,
19529 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { * series.dataLabelsGroup and series.markerGroup. On subsequent calls, the
19530 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { * group will only be adjusted to the updated plot size.
19531 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { */
19532 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { plotGroup: function(prop, name, visibility, zIndex, parent) {
19533 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { var group = this[prop],
19534 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { isNew = !group;
19535  
19536 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Generate it on first call
19537 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (isNew) {
19538 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { this[prop] = group = this.chart.renderer.g()
19539 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { .attr({
19540 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { zIndex: zIndex || 0.1 // IE8 and pointer logic use this
19541 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { })
19542 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { .add(parent);
19543  
19544 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19545  
19546 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Add the class names, and replace existing ones as response to
19547 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Series.update (#6660)
19548 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { group.addClass(
19549 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { (
19550 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { 'highcharts-' + name +
19551 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { ' highcharts-series-' + this.index +
19552 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { ' highcharts-' + this.type + '-series ' +
19553 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { 'highcharts-color-' + this.colorIndex + ' ' +
19554 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { (this.options.className || '')
19555 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { ),
19556 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { true
19557 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { );
19558  
19559 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Place it on first and subsequent (redraw) calls
19560 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { group.attr({
19561 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { visibility: visibility
19562 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { })[isNew ? 'attr' : 'animate'](
19563 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { this.getPlotBox()
19564 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { );
19565 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { return group;
19566 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { },
19567  
19568 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { /**
19569 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { * Get the translation and scale for the plot area of this series
19570 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { */
19571 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { getPlotBox: function() {
19572 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { var chart = this.chart,
19573 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { xAxis = this.xAxis,
19574 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { yAxis = this.yAxis;
19575  
19576 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Swap axes for inverted (#2339)
19577 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (chart.inverted) {
19578 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { xAxis = yAxis;
19579 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { yAxis = this.xAxis;
19580 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19581 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { return {
19582 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { translateX: xAxis ? xAxis.left : chart.plotLeft,
19583 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { translateY: yAxis ? yAxis.top : chart.plotTop,
19584 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { scaleX: 1, // #1623
19585 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { scaleY: 1
19586 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { };
19587 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { },
19588  
19589 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { /**
19590 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { * Render the graph and markers
19591 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { */
19592 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { render: function() {
19593 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { var series = this,
19594 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { chart = series.chart,
19595 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { group,
19596 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { options = series.options,
19597 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Animation doesn't work in IE8 quirks when the group div is
19598 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // hidden, and looks bad in other oldIE
19599 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { animDuration = (!!series.animate &&
19600 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { chart.renderer.isSVG &&
19601 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { animObject(options.animation).duration
19602 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { ),
19603 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { visibility = series.visible ? 'inherit' : 'hidden', // #2597
19604 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { zIndex = options.zIndex,
19605 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { hasRendered = series.hasRendered,
19606 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { chartSeriesGroup = chart.seriesGroup,
19607 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { inverted = chart.inverted;
19608  
19609 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // the group
19610 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { group = series.plotGroup(
19611 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { 'group',
19612 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { 'series',
19613 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { visibility,
19614 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { zIndex,
19615 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { chartSeriesGroup
19616 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { );
19617  
19618 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { series.markerGroup = series.plotGroup(
19619 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { 'markerGroup',
19620 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { 'markers',
19621 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { visibility,
19622 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { zIndex,
19623 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { chartSeriesGroup
19624 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { );
19625  
19626 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // initiate the animation
19627 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (animDuration) {
19628 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { series.animate(true);
19629 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19630  
19631 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // SVGRenderer needs to know this before drawing elements (#1089, #1795)
19632 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { group.inverted = series.isCartesian ? inverted : false;
19633  
19634 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // draw the graph if any
19635 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (series.drawGraph) {
19636 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { series.drawGraph();
19637 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { series.applyZones();
19638 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19639  
19640 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { /* each(series.points, function (point) {
19641 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (point.redraw) {
19642 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { point.redraw();
19643 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19644 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { });*/
19645  
19646 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // draw the data labels (inn pies they go before the points)
19647 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (series.drawDataLabels) {
19648 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { series.drawDataLabels();
19649 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19650  
19651 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // draw the points
19652 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (series.visible) {
19653 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { series.drawPoints();
19654 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19655  
19656  
19657 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // draw the mouse tracking area
19658 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (
19659 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { series.drawTracker &&
19660 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { series.options.enableMouseTracking !== false
19661 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { ) {
19662 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { series.drawTracker();
19663 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19664  
19665 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Handle inverted series and tracker groups
19666 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { series.invertGroups(inverted);
19667  
19668 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Initial clipping, must be defined after inverting groups for VML.
19669 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Applies to columns etc. (#3839).
19670 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (options.clip !== false && !series.sharedClipKey && !hasRendered) {
19671 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { group.clip(chart.clipRect);
19672 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19673  
19674 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Run the animation
19675 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (animDuration) {
19676 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { series.animate();
19677 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19678  
19679 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Call the afterAnimate function on animation complete (but don't
19680 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // overwrite the animation.complete option which should be available to
19681 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // the user).
19682 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (!hasRendered) {
19683 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { series.animationTimeout = syncTimeout(function() {
19684 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { series.afterAnimate();
19685 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }, animDuration);
19686 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19687  
19688 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { series.isDirty = false; // means data is in accordance with what you see
19689 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // (See #322) series.isDirty = series.isDirtyData = false; // means
19690 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // data is in accordance with what you see
19691 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { series.hasRendered = true;
19692 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { },
19693  
19694 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { /**
19695 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { * Redraw the series after an update in the axes.
19696 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { */
19697 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { redraw: function() {
19698 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { var series = this,
19699 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { chart = series.chart,
19700 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // cache it here as it is set to false in render, but used after
19701 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { wasDirty = series.isDirty || series.isDirtyData,
19702 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { group = series.group,
19703 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { xAxis = series.xAxis,
19704 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { yAxis = series.yAxis;
19705  
19706 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // reposition on resize
19707 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (group) {
19708 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (chart.inverted) {
19709 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { group.attr({
19710 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { width: chart.plotWidth,
19711 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { height: chart.plotHeight
19712 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { });
19713 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19714  
19715 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { group.animate({
19716 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { translateX: pick(xAxis && xAxis.left, chart.plotLeft),
19717 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { translateY: pick(yAxis && yAxis.top, chart.plotTop)
19718 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { });
19719 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19720  
19721 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { series.translate();
19722 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { series.render();
19723 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (wasDirty) { // #3868, #3945
19724 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { delete this.kdTree;
19725 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19726 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { },
19727  
19728 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { /**
19729 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { * KD Tree && PointSearching Implementation
19730 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { */
19731  
19732 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { kdAxisArray: ['clientX', 'plotY'],
19733  
19734 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { searchPoint: function(e, compareX) {
19735 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { var series = this,
19736 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { xAxis = series.xAxis,
19737 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { yAxis = series.yAxis,
19738 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { inverted = series.chart.inverted;
19739  
19740 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { return this.searchKDTree({
19741 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { clientX: inverted ?
19742 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { xAxis.len - e.chartY + xAxis.pos : e.chartX - xAxis.pos,
19743 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { plotY: inverted ?
19744 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { yAxis.len - e.chartX + yAxis.pos : e.chartY - yAxis.pos
19745 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }, compareX);
19746 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { },
19747  
19748 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { /**
19749 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { * Build the k-d-tree that is used by mouse and touch interaction to get the
19750 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { * closest point. Line-like series typically have a one-dimensional tree
19751 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { * where points are searched along the X axis, while scatter-like series
19752 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { * typically search in two dimensions, X and Y.
19753 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { */
19754 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { buildKDTree: function() {
19755  
19756 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Prevent multiple k-d-trees from being built simultaneously (#6235)
19757 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { this.buildingKdTree = true;
19758  
19759 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { var series = this,
19760 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { dimensions = series.options.findNearestPointBy.indexOf('y') > -1 ?
19761 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { 2 : 1;
19762  
19763 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Internal function
19764 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { function _kdtree(points, depth, dimensions) {
19765 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { var axis,
19766 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { median,
19767 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { length = points && points.length;
19768  
19769 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { if (length) {
19770  
19771 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // alternate between the axis
19772 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { axis = series.kdAxisArray[depth % dimensions];
19773  
19774 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // sort point array
19775 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { points.sort(function(a, b) {
19776 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { return a[axis] - b[axis];
19777 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { });
19778  
19779 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { median = Math.floor(length / 2);
19780  
19781 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // build and return nod
19782 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { return {
19783 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { point: points[median],
19784 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { left: _kdtree(
19785 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { points.slice(0, median), depth + 1, dimensions
19786 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { ),
19787 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { right: _kdtree(
19788 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { points.slice(median + 1), depth + 1, dimensions
19789 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { )
19790 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { };
19791  
19792 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19793 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19794  
19795 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Start the recursive build process with a clone of the points array
19796 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // and null points filtered out (#3873)
19797 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { function startRecursive() {
19798 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { series.kdTree = _kdtree(
19799 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { series.getValidPoints(
19800 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { null,
19801 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // For line-type series restrict to plot area, but
19802 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // column-type series not (#3916, #4511)
19803 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { !series.directTouch
19804 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { ),
19805 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { dimensions,
19806 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { dimensions
19807 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { );
19808 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { series.buildingKdTree = false;
19809 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19810 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { delete series.kdTree;
19811  
19812 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // For testing tooltips, don't build async
19813 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { syncTimeout(startRecursive, series.options.kdNow ? 0 : 1);
19814 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { },
19815  
19816 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { searchKDTree: function(point, compareX) {
19817 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { var series = this,
19818 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { kdX = this.kdAxisArray[0],
19819 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { kdY = this.kdAxisArray[1],
19820 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { kdComparer = compareX ? 'distX' : 'dist',
19821 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { kdDimensions = series.options.findNearestPointBy.indexOf('y') > -1 ?
19822 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { 2 : 1;
19823  
19824 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Set the one and two dimensional distance on the point object
19825 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { function setDistance(p1, p2) {
19826 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { var x = (defined(p1[kdX]) && defined(p2[kdX])) ?
19827 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { Math.pow(p1[kdX] - p2[kdX], 2) :
19828 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { null,
19829 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { y = (defined(p1[kdY]) && defined(p2[kdY])) ?
19830 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { Math.pow(p1[kdY] - p2[kdY], 2) :
19831 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { null,
19832 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { r = (x || 0) + (y || 0);
19833  
19834 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { p2.dist = defined(r) ? Math.sqrt(r) : Number.MAX_VALUE;
19835 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { p2.distX = defined(x) ? Math.sqrt(x) : Number.MAX_VALUE;
19836 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { }
19837  
19838 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { function _search(search, tree, depth, dimensions) {
19839 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { var point = tree.point,
19840 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { axis = series.kdAxisArray[depth % dimensions],
19841 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { tdist,
19842 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { sideA,
19843 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { sideB,
19844 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { ret = point,
19845 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { nPoint1,
19846 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { nPoint2;
19847  
19848 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { setDistance(search, point);
19849  
19850 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { // Pick side based on distance to splitting point
19851 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { tdist = search[axis] - point[axis];
19852 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) { sideA = tdist < 0 ? 'left' : 'right';
19853 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right'; sideB = tdist < 0 ? 'right' : 'left';
19854  
19855 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left'; // End of tree
19856 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left'; if (tree[sideA]) {
19857 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left'; nPoint1 = _search(search, tree[sideA], depth + 1, dimensions);
19858  
19859 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left'; ret = (nPoint1[kdComparer] < ret[kdComparer] ? nPoint1 : point);
19860 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point); }
19861 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point); if (tree[sideB]) {
19862 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point); // compare distance to current best to splitting point to decide
19863 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point); // wether to check side B or not
19864 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point); if (Math.sqrt(tdist * tdist) < ret[kdComparer]) {
19865 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) { nPoint2 = _search(
19866 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) { search,
19867 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) { tree[sideB],
19868 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) { depth + 1,
19869 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) { dimensions
19870 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) { );
19871 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) { ret = nPoint2[kdComparer] < ret[kdComparer] ?
19872 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? nPoint2 :
19873 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? ret;
19874 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
19875 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
19876  
19877 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? return ret;
19878 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
19879  
19880 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (!this.kdTree && !this.buildingKdTree) {
19881 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? this.buildKDTree();
19882 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
19883  
19884 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (this.kdTree) {
19885 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? return _search(point, this.kdTree, kdDimensions, kdDimensions);
19886 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
19887 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
19888  
19889 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }); // end Series prototype
19890  
19891 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }(Highcharts));
19892 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? (function(H) {
19893 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? /**
19894 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * (c) 2010-2017 Torstein Honsi
19895 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? *
19896 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * License: www.highcharts.com/license
19897 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? */
19898 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? var addEvent = H.addEvent,
19899 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? animate = H.animate,
19900 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? Axis = H.Axis,
19901 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? Chart = H.Chart,
19902 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? createElement = H.createElement,
19903 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? css = H.css,
19904 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? defined = H.defined,
19905 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? each = H.each,
19906 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? erase = H.erase,
19907 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? extend = H.extend,
19908 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? fireEvent = H.fireEvent,
19909 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? inArray = H.inArray,
19910 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? isNumber = H.isNumber,
19911 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? isObject = H.isObject,
19912 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? isArray = H.isArray,
19913 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? merge = H.merge,
19914 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? objectEach = H.objectEach,
19915 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? pick = H.pick,
19916 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? Point = H.Point,
19917 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? Series = H.Series,
19918 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? seriesTypes = H.seriesTypes,
19919 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? setAnimation = H.setAnimation,
19920 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? splat = H.splat;
19921  
19922 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Extend the Chart prototype for dynamic methods
19923 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? extend(Chart.prototype, /** @lends Highcharts.Chart.prototype */ {
19924  
19925 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? /**
19926 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Add a series to the chart after render time. Note that this method should
19927 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * never be used when adding data synchronously at chart render time, as it
19928 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * adds expense to the calculations and rendering. When adding data at the
19929 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * same time as the chart is initiated, add the series as a configuration
19930 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * option instead. With multiple axes, the `offset` is dynamically adjusted.
19931 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? *
19932 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @param {SeriesOptions} options
19933 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * The config options for the series.
19934 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @param {Boolean} [redraw=true]
19935 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Whether to redraw the chart after adding.
19936 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @param {AnimationOptions} animation
19937 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Whether to apply animation, and optionally animation
19938 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * configuration.
19939 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? *
19940 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @return {Highcharts.Series}
19941 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * The newly created series object.
19942 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? *
19943 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @sample highcharts/members/chart-addseries/
19944 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Add a series from a button
19945 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @sample stock/members/chart-addseries/
19946 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Add a series in Highstock
19947 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? */
19948 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? addSeries: function(options, redraw, animation) {
19949 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? var series,
19950 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart = this;
19951  
19952 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (options) {
19953 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? redraw = pick(redraw, true); // defaults to true
19954  
19955 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? fireEvent(chart, 'addSeries', {
19956 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? options: options
19957 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }, function() {
19958 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? series = chart.initSeries(options);
19959  
19960 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart.isDirtyLegend = true; // the series array is out of sync with the display
19961 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart.linkSeries();
19962 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (redraw) {
19963 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart.redraw(animation);
19964 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
19965 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? });
19966 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
19967  
19968 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? return series;
19969 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? },
19970  
19971 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? /**
19972 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Add an axis to the chart after render time. Note that this method should
19973 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * never be used when adding data synchronously at chart render time, as it
19974 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * adds expense to the calculations and rendering. When adding data at the
19975 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * same time as the chart is initiated, add the axis as a configuration
19976 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * option instead.
19977 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @param {AxisOptions} options
19978 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * The axis options.
19979 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @param {Boolean} [isX=false]
19980 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Whether it is an X axis or a value axis.
19981 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @param {Boolean} [redraw=true]
19982 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Whether to redraw the chart after adding.
19983 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @param {AnimationOptions} [animation=true]
19984 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Whether and how to apply animation in the redraw.
19985 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? *
19986 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @sample highcharts/members/chart-addaxis/ Add and remove axes
19987 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? */
19988 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? addAxis: function(options, isX, redraw, animation) {
19989 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? var key = isX ? 'xAxis' : 'yAxis',
19990 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chartOptions = this.options,
19991 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? userOptions = merge(options, {
19992 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? index: this[key].length,
19993 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? isX: isX
19994 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? });
19995  
19996 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? new Axis(this, userOptions); // eslint-disable-line no-new
19997  
19998 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Push the new axis options to the chart options
19999 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chartOptions[key] = splat(chartOptions[key] || {});
20000 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chartOptions[key].push(userOptions);
20001  
20002 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (pick(redraw, true)) {
20003 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? this.redraw(animation);
20004 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20005 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? },
20006  
20007 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? /**
20008 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Dim the chart and show a loading text or symbol. Options for the loading
20009 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * screen are defined in {@link
20010 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * https://api.highcharts.com/highcharts/loading|the loading options}.
20011 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? *
20012 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @param {String} str
20013 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * An optional text to show in the loading label instead of the
20014 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * default one. The default text is set in {@link
20015 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * http://api.highcharts.com/highcharts/lang.loading|lang.loading}.
20016 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? *
20017 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @sample highcharts/members/chart-hideloading/
20018 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Show and hide loading from a button
20019 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @sample highcharts/members/chart-showloading/
20020 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Apply different text labels
20021 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @sample stock/members/chart-show-hide-loading/
20022 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Toggle loading in Highstock
20023 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? */
20024 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? showLoading: function(str) {
20025 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? var chart = this,
20026 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? options = chart.options,
20027 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? loadingDiv = chart.loadingDiv,
20028 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? loadingOptions = options.loading,
20029 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? setLoadingSize = function() {
20030 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (loadingDiv) {
20031 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? css(loadingDiv, {
20032 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? left: chart.plotLeft + 'px',
20033 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? top: chart.plotTop + 'px',
20034 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? width: chart.plotWidth + 'px',
20035 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? height: chart.plotHeight + 'px'
20036 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? });
20037 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20038 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? };
20039  
20040 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // create the layer at the first call
20041 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (!loadingDiv) {
20042 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart.loadingDiv = loadingDiv = createElement('div', {
20043 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? className: 'highcharts-loading highcharts-loading-hidden'
20044 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }, null, chart.container);
20045  
20046 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart.loadingSpan = createElement(
20047 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? 'span', {
20048 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? className: 'highcharts-loading-inner'
20049 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? },
20050 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? null,
20051 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? loadingDiv
20052 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? );
20053 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? addEvent(chart, 'redraw', setLoadingSize); // #1080
20054 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20055  
20056 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? loadingDiv.className = 'highcharts-loading';
20057  
20058 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Update text
20059 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart.loadingSpan.innerHTML = str || options.lang.loading;
20060  
20061  
20062 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Update visuals
20063 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? css(loadingDiv, extend(loadingOptions.style, {
20064 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? zIndex: 10
20065 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }));
20066 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? css(chart.loadingSpan, loadingOptions.labelStyle);
20067  
20068 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Show it
20069 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (!chart.loadingShown) {
20070 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? css(loadingDiv, {
20071 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? opacity: 0,
20072 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? display: ''
20073 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? });
20074 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? animate(loadingDiv, {
20075 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? opacity: loadingOptions.style.opacity || 0.5
20076 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }, {
20077 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? duration: loadingOptions.showDuration || 0
20078 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? });
20079 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20080  
20081  
20082 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart.loadingShown = true;
20083 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? setLoadingSize();
20084 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? },
20085  
20086 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? /**
20087 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Hide the loading layer.
20088 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? *
20089 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @see Highcharts.Chart#showLoading
20090 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @sample highcharts/members/chart-hideloading/
20091 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Show and hide loading from a button
20092 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @sample stock/members/chart-show-hide-loading/
20093 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Toggle loading in Highstock
20094 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? */
20095 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? hideLoading: function() {
20096 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? var options = this.options,
20097 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? loadingDiv = this.loadingDiv;
20098  
20099 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (loadingDiv) {
20100 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? loadingDiv.className = 'highcharts-loading highcharts-loading-hidden';
20101  
20102 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? animate(loadingDiv, {
20103 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? opacity: 0
20104 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }, {
20105 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? duration: options.loading.hideDuration || 100,
20106 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? complete: function() {
20107 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? css(loadingDiv, {
20108 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? display: 'none'
20109 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? });
20110 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20111 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? });
20112  
20113 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20114 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? this.loadingShown = false;
20115 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? },
20116  
20117 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? /**
20118 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * These properties cause isDirtyBox to be set to true when updating. Can be extended from plugins.
20119 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? */
20120 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? propsRequireDirtyBox: ['backgroundColor', 'borderColor', 'borderWidth', 'margin', 'marginTop', 'marginRight',
20121 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? 'marginBottom', 'marginLeft', 'spacing', 'spacingTop', 'spacingRight', 'spacingBottom', 'spacingLeft',
20122 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? 'borderRadius', 'plotBackgroundColor', 'plotBackgroundImage', 'plotBorderColor', 'plotBorderWidth',
20123 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? 'plotShadow', 'shadow'
20124 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? ],
20125  
20126 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? /**
20127 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * These properties cause all series to be updated when updating. Can be
20128 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * extended from plugins.
20129 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? */
20130 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? propsRequireUpdateSeries: ['chart.inverted', 'chart.polar',
20131 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? 'chart.ignoreHiddenSeries', 'chart.type', 'colors', 'plotOptions',
20132 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? 'tooltip'
20133 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? ],
20134  
20135 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? /**
20136 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * A generic function to update any element of the chart. Elements can be
20137 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * enabled and disabled, moved, re-styled, re-formatted etc.
20138 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? *
20139 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * A special case is configuration objects that take arrays, for example
20140 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * {@link https://api.highcharts.com/highcharts/xAxis|xAxis},
20141 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * {@link https://api.highcharts.com/highcharts/yAxis|yAxis} or
20142 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * {@link https://api.highcharts.com/highcharts/series|series}. For these
20143 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * collections, an `id` option is used to map the new option set to an
20144 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * existing object. If an existing object of the same id is not found, the
20145 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * corresponding item is updated. So for example, running `chart.update`
20146 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * with a series item without an id, will cause the existing chart's series
20147 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * with the same index in the series array to be updated.
20148 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? *
20149 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * See also the {@link https://api.highcharts.com/highcharts/responsive|
20150 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * responsive option set}. Switching between `responsive.rules` basically
20151 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * runs `chart.update` under the hood.
20152 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? *
20153 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @param {Options} options
20154 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * A configuration object for the new chart options.
20155 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @param {Boolean} [redraw=true]
20156 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Whether to redraw the chart.
20157 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? *
20158 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @sample highcharts/members/chart-update/
20159 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Update chart geometry
20160 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? */
20161 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? update: function(options, redraw) {
20162 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? var chart = this,
20163 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? adders = {
20164 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? credits: 'addCredits',
20165 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? title: 'setTitle',
20166 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? subtitle: 'setSubtitle'
20167 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? },
20168 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? optionsChart = options.chart,
20169 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? updateAllAxes,
20170 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? updateAllSeries,
20171 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? newWidth,
20172 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? newHeight;
20173  
20174 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // If the top-level chart option is present, some special updates are required
20175 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (optionsChart) {
20176 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? merge(true, chart.options.chart, optionsChart);
20177  
20178 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Setter function
20179 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if ('className' in optionsChart) {
20180 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart.setClassName(optionsChart.className);
20181 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20182  
20183 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if ('inverted' in optionsChart || 'polar' in optionsChart) {
20184 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Parse options.chart.inverted and options.chart.polar together
20185 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // with the available series.
20186 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart.propFromSeries();
20187 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? updateAllAxes = true;
20188 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20189  
20190 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if ('alignTicks' in optionsChart) { // #6452
20191 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? updateAllAxes = true;
20192 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20193  
20194 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? objectEach(optionsChart, function(val, key) {
20195 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (inArray('chart.' + key, chart.propsRequireUpdateSeries) !== -1) {
20196 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? updateAllSeries = true;
20197 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20198 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Only dirty box
20199 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (inArray(key, chart.propsRequireDirtyBox) !== -1) {
20200 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart.isDirtyBox = true;
20201 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20202 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? });
20203  
20204  
20205 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if ('style' in optionsChart) {
20206 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart.renderer.setStyle(optionsChart.style);
20207 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20208  
20209 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20210  
20211 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Moved up, because tooltip needs updated plotOptions (#6218)
20212  
20213 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (options.colors) {
20214 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? this.options.colors = options.colors;
20215 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20216  
20217  
20218 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (options.plotOptions) {
20219 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? merge(true, this.options.plotOptions, options.plotOptions);
20220 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20221  
20222 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Some option stuctures correspond one-to-one to chart objects that
20223 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // have update methods, for example
20224 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // options.credits => chart.credits
20225 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // options.legend => chart.legend
20226 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // options.title => chart.title
20227 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // options.tooltip => chart.tooltip
20228 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // options.subtitle => chart.subtitle
20229 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // options.mapNavigation => chart.mapNavigation
20230 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // options.navigator => chart.navigator
20231 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // options.scrollbar => chart.scrollbar
20232 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? objectEach(options, function(val, key) {
20233 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (chart[key] && typeof chart[key].update === 'function') {
20234 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart[key].update(val, false);
20235  
20236 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // If a one-to-one object does not exist, look for an adder function
20237 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? } else if (typeof chart[adders[key]] === 'function') {
20238 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart[adders[key]](val);
20239 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20240  
20241 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (
20242 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? key !== 'chart' &&
20243 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? inArray(key, chart.propsRequireUpdateSeries) !== -1
20244 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? ) {
20245 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? updateAllSeries = true;
20246 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20247 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? });
20248  
20249 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Setters for collections. For axes and series, each item is referred
20250 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // by an id. If the id is not found, it defaults to the corresponding
20251 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // item in the collection, so setting one series without an id, will
20252 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // update the first series in the chart. Setting two series without
20253 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // an id will update the first and the second respectively (#6019)
20254 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // chart.update and responsive.
20255 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? each([
20256 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? 'xAxis',
20257 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? 'yAxis',
20258 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? 'zAxis',
20259 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? 'series',
20260 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? 'colorAxis',
20261 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? 'pane'
20262 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? ], function(coll) {
20263 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (options[coll]) {
20264 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? each(splat(options[coll]), function(newOptions, i) {
20265 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? var item = (
20266 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? defined(newOptions.id) &&
20267 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart.get(newOptions.id)
20268 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? ) || chart[coll][i];
20269 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (item && item.coll === coll) {
20270 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? item.update(newOptions, false);
20271 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20272 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? });
20273 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20274 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? });
20275  
20276 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (updateAllAxes) {
20277 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? each(chart.axes, function(axis) {
20278 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? axis.update({}, false);
20279 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? });
20280 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20281  
20282 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Certain options require the whole series structure to be thrown away
20283 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // and rebuilt
20284 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (updateAllSeries) {
20285 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? each(chart.series, function(series) {
20286 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? series.update({}, false);
20287 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? });
20288 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20289  
20290 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // For loading, just update the options, do not redraw
20291 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (options.loading) {
20292 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? merge(true, chart.options.loading, options.loading);
20293 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20294  
20295 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Update size. Redraw is forced.
20296 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? newWidth = optionsChart && optionsChart.width;
20297 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? newHeight = optionsChart && optionsChart.height;
20298 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if ((isNumber(newWidth) && newWidth !== chart.chartWidth) ||
20299 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? (isNumber(newHeight) && newHeight !== chart.chartHeight)) {
20300 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart.setSize(newWidth, newHeight);
20301 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? } else if (pick(redraw, true)) {
20302 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart.redraw();
20303 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20304 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? },
20305  
20306 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? /**
20307 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Setter function to allow use from chart.update
20308 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? */
20309 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? setSubtitle: function(options) {
20310 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? this.setTitle(undefined, options);
20311 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20312  
20313  
20314 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? });
20315  
20316 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // extend the Point prototype for dynamic methods
20317 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? extend(Point.prototype, /** @lends Highcharts.Point.prototype */ {
20318 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? /**
20319 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Update point with new options (typically x/y data) and optionally redraw
20320 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * the series.
20321 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? *
20322 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @param {Object} options
20323 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * The point options. Point options are handled as described under
20324 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * the `series<type>.data` item for each series type. For example
20325 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * for a line series, if options is a single number, the point will
20326 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * be given that number as the main y value. If it is an array, it
20327 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * will be interpreted as x and y values respectively. If it is an
20328 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * object, advanced options are applied.
20329 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @param {Boolean} [redraw=true]
20330 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Whether to redraw the chart after the point is updated. If doing
20331 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * more operations on the chart, it is best practice to set
20332 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * `redraw` to false and call `chart.redraw()` after.
20333 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @param {AnimationOptions} [animation=true]
20334 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Whether to apply animation, and optionally animation
20335 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * configuration.
20336 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? *
20337 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @sample highcharts/members/point-update-column/
20338 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Update column value
20339 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @sample highcharts/members/point-update-pie/
20340 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Update pie slice
20341 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @sample maps/members/point-update/
20342 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Update map area value in Highmaps
20343 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? */
20344 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? update: function(options, redraw, animation, runEvent) {
20345 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? var point = this,
20346 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? series = point.series,
20347 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? graphic = point.graphic,
20348 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? i,
20349 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart = series.chart,
20350 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? seriesOptions = series.options;
20351  
20352 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? redraw = pick(redraw, true);
20353  
20354 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? function update() {
20355  
20356 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? point.applyOptions(options);
20357  
20358 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Update visuals
20359 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (point.y === null && graphic) { // #4146
20360 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? point.graphic = graphic.destroy();
20361 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20362 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (isObject(options, true)) {
20363 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Destroy so we can get new elements
20364 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (graphic && graphic.element) {
20365 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (options && options.marker && options.marker.symbol) {
20366 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? point.graphic = graphic.destroy();
20367 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20368 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20369 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (options && options.dataLabels && point.dataLabel) { // #2468
20370 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? point.dataLabel = point.dataLabel.destroy();
20371 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20372 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20373  
20374 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // record changes in the parallel arrays
20375 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? i = point.index;
20376 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? series.updateParallelArrays(point, i);
20377  
20378 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Record the options to options.data. If the old or the new config
20379 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // is an object, use point options, otherwise use raw options
20380 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // (#4701, #4916).
20381 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? seriesOptions.data[i] = (
20382 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? isObject(seriesOptions.data[i], true) ||
20383 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? isObject(options, true)
20384 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? ) ?
20385 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? point.options :
20386 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? options;
20387  
20388 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // redraw
20389 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? series.isDirty = series.isDirtyData = true;
20390 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (!series.fixedBox && series.hasCartesianSeries) { // #1906, #2320
20391 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart.isDirtyBox = true;
20392 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20393  
20394 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (seriesOptions.legendType === 'point') { // #1831, #1885
20395 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart.isDirtyLegend = true;
20396 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20397 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (redraw) {
20398 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart.redraw(animation);
20399 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20400 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20401  
20402 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Fire the event with a default handler of doing the update
20403 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (runEvent === false) { // When called from setData
20404 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? update();
20405 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? } else {
20406 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? point.firePointEvent('update', {
20407 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? options: options
20408 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }, update);
20409 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20410 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? },
20411  
20412 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? /**
20413 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Remove a point and optionally redraw the series and if necessary the axes
20414 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @param {Boolean} redraw
20415 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Whether to redraw the chart or wait for an explicit call. When
20416 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * doing more operations on the chart, for example running
20417 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * `point.remove()` in a loop, it is best practice to set `redraw`
20418 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * to false and call `chart.redraw()` after.
20419 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @param {AnimationOptions} [animation=false]
20420 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Whether to apply animation, and optionally animation
20421 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * configuration.
20422 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? *
20423 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @sample highcharts/plotoptions/series-point-events-remove/
20424 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Remove point and confirm
20425 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @sample highcharts/members/point-remove/
20426 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Remove pie slice
20427 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @sample maps/members/point-remove/
20428 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Remove selected points in Highmaps
20429 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? */
20430 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? remove: function(redraw, animation) {
20431 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? this.series.removePoint(inArray(this, this.series.data), redraw, animation);
20432 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20433 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? });
20434  
20435 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Extend the series prototype for dynamic methods
20436 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? extend(Series.prototype, /** @lends Series.prototype */ {
20437 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? /**
20438 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Add a point to the series after render time. The point can be added at
20439 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * the end, or by giving it an X value, to the start or in the middle of the
20440 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * series.
20441 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? *
20442 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @param {Number|Array|Object} options
20443 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * The point options. If options is a single number, a point with
20444 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * that y value is appended to the series.If it is an array, it will
20445 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * be interpreted as x and y values respectively. If it is an
20446 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * object, advanced options as outlined under `series.data` are
20447 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * applied.
20448 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @param {Boolean} [redraw=true]
20449 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Whether to redraw the chart after the point is added. When adding
20450 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * more than one point, it is highly recommended that the redraw
20451 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * option be set to false, and instead {@link Chart#redraw}
20452 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * is explicitly called after the adding of points is finished.
20453 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Otherwise, the chart will redraw after adding each point.
20454 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @param {Boolean} [shift=false]
20455 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * If true, a point is shifted off the start of the series as one is
20456 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * appended to the end.
20457 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @param {AnimationOptions} [animation]
20458 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Whether to apply animation, and optionally animation
20459 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * configuration.
20460 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? *
20461 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @sample highcharts/members/series-addpoint-append/
20462 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Append point
20463 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @sample highcharts/members/series-addpoint-append-and-shift/
20464 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Append and shift
20465 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @sample highcharts/members/series-addpoint-x-and-y/
20466 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Both X and Y values given
20467 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @sample highcharts/members/series-addpoint-pie/
20468 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Append pie slice
20469 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @sample stock/members/series-addpoint/
20470 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Append 100 points in Highstock
20471 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @sample stock/members/series-addpoint-shift/
20472 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Append and shift in Highstock
20473 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @sample maps/members/series-addpoint/
20474 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Add a point in Highmaps
20475 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? */
20476 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? addPoint: function(options, redraw, shift, animation) {
20477 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? var series = this,
20478 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? seriesOptions = series.options,
20479 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? data = series.data,
20480 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart = series.chart,
20481 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? xAxis = series.xAxis,
20482 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? names = xAxis && xAxis.hasNames && xAxis.names,
20483 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? dataOptions = seriesOptions.data,
20484 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? point,
20485 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? isInTheMiddle,
20486 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? xData = series.xData,
20487 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? i,
20488 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? x;
20489  
20490 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Optional redraw, defaults to true
20491 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? redraw = pick(redraw, true);
20492  
20493 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Get options and push the point to xData, yData and series.options. In series.generatePoints
20494 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // the Point instance will be created on demand and pushed to the series.data array.
20495 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? point = {
20496 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? series: series
20497 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? };
20498 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? series.pointClass.prototype.applyOptions.apply(point, [options]);
20499 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? x = point.x;
20500  
20501 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Get the insertion point
20502 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? i = xData.length;
20503 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (series.requireSorting && x < xData[i - 1]) {
20504 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? isInTheMiddle = true;
20505 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? while (i && xData[i - 1] > x) {
20506 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? i--;
20507 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20508 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20509  
20510 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? series.updateParallelArrays(point, 'splice', i, 0, 0); // insert undefined item
20511 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? series.updateParallelArrays(point, i); // update it
20512  
20513 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (names && point.name) {
20514 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? names[x] = point.name;
20515 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20516 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? dataOptions.splice(i, 0, options);
20517  
20518 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (isInTheMiddle) {
20519 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? series.data.splice(i, 0, null);
20520 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? series.processData();
20521 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20522  
20523 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Generate points to be added to the legend (#1329)
20524 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (seriesOptions.legendType === 'point') {
20525 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? series.generatePoints();
20526 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20527  
20528 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Shift the first point off the parallel arrays
20529 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (shift) {
20530 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (data[0] && data[0].remove) {
20531 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? data[0].remove(false);
20532 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? } else {
20533 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? data.shift();
20534 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? series.updateParallelArrays(point, 'shift');
20535  
20536 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? dataOptions.shift();
20537 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20538 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20539  
20540 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // redraw
20541 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? series.isDirty = true;
20542 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? series.isDirtyData = true;
20543  
20544 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (redraw) {
20545 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart.redraw(animation); // Animation is set anyway on redraw, #5665
20546 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20547 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? },
20548  
20549 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? /**
20550 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Remove a point from the series. Unlike the {@link Highcharts.Point#remove}
20551 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * method, this can also be done on a point that is not instanciated because
20552 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * it is outside the view or subject to Highstock data grouping.
20553 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? *
20554 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @param {Number} i
20555 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * The index of the point in the {@link Highcharts.Series.data|data}
20556 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * array.
20557 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @param {Boolean} [redraw=true]
20558 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Whether to redraw the chart after the point is added. When
20559 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * removing more than one point, it is highly recommended that the
20560 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * `redraw` option be set to `false`, and instead {@link
20561 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Highcharts.Chart#redraw} is explicitly called after the adding of
20562 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * points is finished.
20563 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @param {AnimationOptions} [animation]
20564 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Whether and optionally how the series should be animated.
20565 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? *
20566 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @sample highcharts/members/series-removepoint/
20567 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Remove cropped point
20568 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? */
20569 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? removePoint: function(i, redraw, animation) {
20570  
20571 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? var series = this,
20572 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? data = series.data,
20573 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? point = data[i],
20574 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? points = series.points,
20575 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart = series.chart,
20576 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? remove = function() {
20577  
20578 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (points && points.length === data.length) { // #4935
20579 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? points.splice(i, 1);
20580 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20581 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? data.splice(i, 1);
20582 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? series.options.data.splice(i, 1);
20583 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? series.updateParallelArrays(point || {
20584 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? series: series
20585 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }, 'splice', i, 1);
20586  
20587 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (point) {
20588 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? point.destroy();
20589 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20590  
20591 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // redraw
20592 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? series.isDirty = true;
20593 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? series.isDirtyData = true;
20594 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (redraw) {
20595 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart.redraw();
20596 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20597 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? };
20598  
20599 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? setAnimation(animation, chart);
20600 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? redraw = pick(redraw, true);
20601  
20602 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Fire the event with a default handler of removing the point
20603 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (point) {
20604 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? point.firePointEvent('remove', null, remove);
20605 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? } else {
20606 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? remove();
20607 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20608 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? },
20609  
20610 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? /**
20611 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Remove a series and optionally redraw the chart.
20612 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? *
20613 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @param {Boolean} [redraw=true]
20614 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Whether to redraw the chart or wait for an explicit call to
20615 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * {@link Highcharts.Chart#redraw}.
20616 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @param {AnimationOptions} [animation]
20617 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Whether to apply animation, and optionally animation
20618 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * configuration
20619 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @param {Boolean} [withEvent=true]
20620 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Used internally, whether to fire the series `remove` event.
20621 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? *
20622 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @sample highcharts/members/series-remove/
20623 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Remove first series from a button
20624 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? */
20625 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? remove: function(redraw, animation, withEvent) {
20626 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? var series = this,
20627 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart = series.chart;
20628  
20629 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? function remove() {
20630  
20631 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Destroy elements
20632 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? series.destroy();
20633  
20634 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Redraw
20635 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart.isDirtyLegend = chart.isDirtyBox = true;
20636 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart.linkSeries();
20637  
20638 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (pick(redraw, true)) {
20639 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart.redraw(animation);
20640 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20641 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20642  
20643 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Fire the event with a default handler of removing the point
20644 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (withEvent !== false) {
20645 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? fireEvent(series, 'remove', null, remove);
20646 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? } else {
20647 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? remove();
20648 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20649 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? },
20650  
20651 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? /**
20652 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Update the series with a new set of options. For a clean and precise
20653 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * handling of new options, all methods and elements from the series are
20654 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * removed, and it is initiated from scratch. Therefore, this method is more
20655 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * performance expensive than some other utility methods like {@link
20656 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Series#setData} or {@link Series#setVisible}.
20657 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? *
20658 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @param {SeriesOptions} options
20659 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * New options that will be merged with the series' existing
20660 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * options.
20661 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @param {Boolean} [redraw=true]
20662 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Whether to redraw the chart after the series is altered. If doing
20663 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * more operations on the chart, it is a good idea to set redraw to
20664 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * false and call {@link Chart#redraw} after.
20665 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? *
20666 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @sample highcharts/members/series-update/
20667 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Updating series options
20668 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @sample maps/members/series-update/
20669 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Update series options in Highmaps
20670 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? */
20671 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? update: function(newOptions, redraw) {
20672 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? var series = this,
20673 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart = series.chart,
20674 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // must use user options when changing type because series.options
20675 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // is merged in with type specific plotOptions
20676 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? oldOptions = series.userOptions,
20677 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? oldType = series.oldType || series.type,
20678 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? newType = newOptions.type || oldOptions.type || chart.options.chart.type,
20679 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? proto = seriesTypes[oldType].prototype,
20680 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? preserve = ['group', 'markerGroup', 'dataLabelsGroup'],
20681 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? n;
20682  
20683 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Running Series.update to update the data only is an intuitive usage,
20684 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // so we want to make sure that when used like this, we run the
20685 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // cheaper setData function and allow animation instead of completely
20686 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // recreating the series instance.
20687 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (Object.keys && Object.keys(newOptions).toString() === 'data') {
20688 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? return this.setData(newOptions.data, redraw);
20689 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20690  
20691 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // If we're changing type or zIndex, create new groups (#3380, #3404)
20692 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if ((newType && newType !== oldType) || newOptions.zIndex !== undefined) {
20693 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? preserve.length = 0;
20694 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20695  
20696 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Make sure groups are not destroyed (#3094)
20697 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? each(preserve, function(prop) {
20698 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? preserve[prop] = series[prop];
20699 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? delete series[prop];
20700 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? });
20701  
20702 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Do the merge, with some forced options
20703 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? newOptions = merge(oldOptions, {
20704 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? animation: false,
20705 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? index: series.index,
20706 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? pointStart: series.xData[0] // when updating after addPoint
20707 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }, {
20708 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? data: series.options.data
20709 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }, newOptions);
20710  
20711 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Destroy the series and delete all properties. Reinsert all methods
20712 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // and properties from the new type prototype (#2270, #3719)
20713 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? series.remove(false, null, false);
20714 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? for (n in proto) {
20715 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? series[n] = undefined;
20716 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20717 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? extend(series, seriesTypes[newType || oldType].prototype);
20718  
20719 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Re-register groups (#3094)
20720 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? each(preserve, function(prop) {
20721 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? series[prop] = preserve[prop];
20722 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? });
20723  
20724 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? series.init(chart, newOptions);
20725 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? series.oldType = oldType;
20726 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart.linkSeries(); // Links are lost in series.remove (#3028)
20727 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (pick(redraw, true)) {
20728 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart.redraw(false);
20729 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20730 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20731 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? });
20732  
20733 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Extend the Axis.prototype for dynamic methods
20734 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? extend(Axis.prototype, /** @lends Highcharts.Axis.prototype */ {
20735  
20736 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? /**
20737 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Update an axis object with a new set of options. The options are merged
20738 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * with the existing options, so only new or altered options need to be
20739 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * specified.
20740 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? *
20741 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @param {Object} options
20742 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * The new options that will be merged in with existing options on
20743 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * the axis.
20744 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @sample highcharts/members/axis-update/ Axis update demo
20745 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? */
20746 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? update: function(options, redraw) {
20747 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? var chart = this.chart;
20748  
20749 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? options = chart.options[this.coll][this.options.index] =
20750 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? merge(this.userOptions, options);
20751  
20752 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? this.destroy(true);
20753  
20754 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? this.init(chart, extend(options, {
20755 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? events: undefined
20756 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }));
20757  
20758 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart.isDirtyBox = true;
20759 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (pick(redraw, true)) {
20760 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart.redraw();
20761 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20762 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? },
20763  
20764 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? /**
20765 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Remove the axis from the chart.
20766 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? *
20767 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @param {Boolean} [redraw=true] Whether to redraw the chart following the
20768 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * remove.
20769 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? *
20770 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @sample highcharts/members/chart-addaxis/ Add and remove axes
20771 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? */
20772 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? remove: function(redraw) {
20773 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? var chart = this.chart,
20774 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? key = this.coll, // xAxis or yAxis
20775 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? axisSeries = this.series,
20776 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? i = axisSeries.length;
20777  
20778 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Remove associated series (#2687)
20779 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? while (i--) {
20780 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (axisSeries[i]) {
20781 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? axisSeries[i].remove(false);
20782 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20783 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20784  
20785 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Remove the axis
20786 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? erase(chart.axes, this);
20787 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? erase(chart[key], this);
20788  
20789 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (isArray(chart.options[key])) {
20790 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart.options[key].splice(this.options.index, 1);
20791 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? } else { // color axis, #6488
20792 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? delete chart.options[key];
20793 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20794  
20795 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? each(chart[key], function(axis, i) { // Re-index, #1706
20796 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? axis.options.index = i;
20797 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? });
20798 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? this.destroy();
20799 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart.isDirtyBox = true;
20800  
20801 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (pick(redraw, true)) {
20802 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart.redraw();
20803 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20804 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? },
20805  
20806 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? /**
20807 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Update the axis title by options after render time.
20808 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? *
20809 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @param {TitleOptions} titleOptions
20810 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * The additional title options.
20811 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @param {Boolean} [redraw=true]
20812 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Whether to redraw the chart after setting the title.
20813 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @sample highcharts/members/axis-settitle/ Set a new Y axis title
20814 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? */
20815 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? setTitle: function(titleOptions, redraw) {
20816 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? this.update({
20817 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? title: titleOptions
20818 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }, redraw);
20819 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? },
20820  
20821 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? /**
20822 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Set new axis categories and optionally redraw.
20823 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @param {Array.<String>} categories - The new categories.
20824 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @param {Boolean} [redraw=true] - Whether to redraw the chart.
20825 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @sample highcharts/members/axis-setcategories/ Set categories by click on
20826 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * a button
20827 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? */
20828 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? setCategories: function(categories, redraw) {
20829 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? this.update({
20830 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? categories: categories
20831 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }, redraw);
20832 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20833  
20834 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? });
20835  
20836 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }(Highcharts));
20837 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? (function(H) {
20838 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? /**
20839 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * (c) 2010-2017 Torstein Honsi
20840 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? *
20841 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * License: www.highcharts.com/license
20842 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? */
20843 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? var animObject = H.animObject,
20844 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? color = H.color,
20845 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? each = H.each,
20846 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? extend = H.extend,
20847 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? isNumber = H.isNumber,
20848 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? LegendSymbolMixin = H.LegendSymbolMixin,
20849 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? merge = H.merge,
20850 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? noop = H.noop,
20851 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? pick = H.pick,
20852 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? Series = H.Series,
20853 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? seriesType = H.seriesType,
20854 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? svg = H.svg;
20855 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? /**
20856 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * The column series type.
20857 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? *
20858 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @constructor seriesTypes.column
20859 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @augments Series
20860 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? */
20861 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? seriesType('column', 'line', {
20862 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? borderRadius: 0,
20863 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? //colorByPoint: undefined,
20864 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? crisp: true,
20865 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? groupPadding: 0.2,
20866 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? //grouping: true,
20867 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? marker: null, // point options are specified in the base options
20868 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? pointPadding: 0.1,
20869 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? //pointWidth: null,
20870 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? minPointLength: 0,
20871 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? cropThreshold: 50, // when there are more points, they will not animate out of the chart on xAxis.setExtremes
20872 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? pointRange: null, // null means auto, meaning 1 in a categorized axis and least distance between points if not categories
20873 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? states: {
20874 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? hover: {
20875 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? halo: false,
20876  
20877 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? brightness: 0.1,
20878 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? shadow: false
20879  
20880 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? },
20881  
20882 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? select: {
20883 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? color: '#cccccc',
20884 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? borderColor: '#000000',
20885 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? shadow: false
20886 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20887  
20888 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? },
20889 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? dataLabels: {
20890 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? align: null, // auto
20891 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? verticalAlign: null, // auto
20892 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? y: null
20893 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? },
20894 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? softThreshold: false,
20895 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? startFromThreshold: true, // false doesn't work well: http://jsfiddle.net/highcharts/hz8fopan/14/
20896 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? stickyTracking: false,
20897 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? tooltip: {
20898 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? distance: 6
20899 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? },
20900 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? threshold: 0,
20901  
20902 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? borderColor: '#ffffff'
20903 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // borderWidth: 1
20904  
20905  
20906 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }, /** @lends seriesTypes.column.prototype */ {
20907 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? cropShoulder: 0,
20908 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? directTouch: true, // When tooltip is not shared, this series (and derivatives) requires direct touch/hover. KD-tree does not apply.
20909 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? trackerGroups: ['group', 'dataLabelsGroup'],
20910 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? negStacks: true, // use separate negative stacks, unlike area stacks where a negative
20911 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // point is substracted from previous (#1910)
20912  
20913 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? /**
20914 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Initialize the series. Extends the basic Series.init method by
20915 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * marking other series of the same type as dirty.
20916 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? *
20917 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @function #init
20918 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @memberOf seriesTypes.column
20919 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * @returns {void}
20920 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? */
20921 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? init: function() {
20922 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? Series.prototype.init.apply(this, arguments);
20923  
20924 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? var series = this,
20925 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? chart = series.chart;
20926  
20927 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // if the series is added dynamically, force redraw of other
20928 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // series affected by a new column
20929 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (chart.hasRendered) {
20930 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? each(chart.series, function(otherSeries) {
20931 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (otherSeries.type === series.type) {
20932 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? otherSeries.isDirty = true;
20933 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20934 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? });
20935 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20936 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? },
20937  
20938 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? /**
20939 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Return the width and x offset of the columns adjusted for grouping, groupPadding, pointPadding,
20940 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * pointWidth etc.
20941 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? */
20942 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? getColumnMetrics: function() {
20943  
20944 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? var series = this,
20945 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? options = series.options,
20946 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? xAxis = series.xAxis,
20947 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? yAxis = series.yAxis,
20948 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? reversedXAxis = xAxis.reversed,
20949 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? stackKey,
20950 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? stackGroups = {},
20951 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? columnCount = 0;
20952  
20953 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Get the total number of column type series.
20954 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // This is called on every series. Consider moving this logic to a
20955 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // chart.orderStacks() function and call it on init, addSeries and removeSeries
20956 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (options.grouping === false) {
20957 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? columnCount = 1;
20958 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? } else {
20959 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? each(series.chart.series, function(otherSeries) {
20960 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? var otherOptions = otherSeries.options,
20961 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? otherYAxis = otherSeries.yAxis,
20962 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? columnIndex;
20963 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (
20964 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? otherSeries.type === series.type &&
20965 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? (
20966 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? otherSeries.visible ||
20967 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? !series.chart.options.chart.ignoreHiddenSeries
20968 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? ) &&
20969 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? yAxis.len === otherYAxis.len &&
20970 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? yAxis.pos === otherYAxis.pos
20971 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? ) { // #642, #2086
20972 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (otherOptions.stacking) {
20973 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? stackKey = otherSeries.stackKey;
20974 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (stackGroups[stackKey] === undefined) {
20975 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? stackGroups[stackKey] = columnCount++;
20976 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20977 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? columnIndex = stackGroups[stackKey];
20978 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? } else if (otherOptions.grouping !== false) { // #1162
20979 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? columnIndex = columnCount++;
20980 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20981 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? otherSeries.columnIndex = columnIndex;
20982 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20983 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? });
20984 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
20985  
20986 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? var categoryWidth = Math.min(
20987 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? Math.abs(xAxis.transA) * (xAxis.ordinalSlope || options.pointRange || xAxis.closestPointRange || xAxis.tickInterval || 1), // #2610
20988 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? xAxis.len // #1535
20989 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? ),
20990 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? groupPadding = categoryWidth * options.groupPadding,
20991 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? groupWidth = categoryWidth - 2 * groupPadding,
20992 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? pointOffsetWidth = groupWidth / (columnCount || 1),
20993 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? pointWidth = Math.min(
20994 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? options.maxPointWidth || xAxis.len,
20995 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? pick(options.pointWidth, pointOffsetWidth * (1 - 2 * options.pointPadding))
20996 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? ),
20997 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? pointPadding = (pointOffsetWidth - pointWidth) / 2,
20998 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? colIndex = (series.columnIndex || 0) + (reversedXAxis ? 1 : 0), // #1251, #3737
20999 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? pointXOffset = pointPadding + (groupPadding + colIndex *
21000 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? pointOffsetWidth - (categoryWidth / 2)) *
21001 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? (reversedXAxis ? -1 : 1);
21002  
21003 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Save it for reading in linked series (Error bars particularly)
21004 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? series.columnMetrics = {
21005 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? width: pointWidth,
21006 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? offset: pointXOffset
21007 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? };
21008 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? return series.columnMetrics;
21009  
21010 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? },
21011  
21012 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? /**
21013 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? * Make the columns crisp. The edges are rounded to the nearest full pixel.
21014 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? */
21015 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? crispCol: function(x, y, w, h) {
21016 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? var chart = this.chart,
21017 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? borderWidth = this.borderWidth,
21018 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? xCrisp = -(borderWidth % 2 ? 0.5 : 0),
21019 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? yCrisp = borderWidth % 2 ? 0.5 : 1,
21020 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? right,
21021 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? bottom,
21022 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? fromTop;
21023  
21024 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (chart.inverted && chart.renderer.isVML) {
21025 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? yCrisp += 1;
21026 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
21027  
21028 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Horizontal. We need to first compute the exact right edge, then round it
21029 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // and compute the width from there.
21030 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? if (this.options.crisp) {
21031 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? right = Math.round(x + w) + xCrisp;
21032 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? x = Math.round(x) + xCrisp;
21033 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? w = right - x;
21034 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? }
21035  
21036 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? // Vertical
21037 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? bottom = Math.round(y + h) + yCrisp;
21038 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ? fromTop = Math.abs(y) <= 0.5 && bottom > 0.5; // #4504, #4656
21039 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom > y = Math.round(y) + yCrisp;
21040 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom > h = bottom - y;
21041  
21042 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom > // Top edges are exceptions
21043 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom > if (fromTop && h) { // #5146
21044 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom > y -= 1;
21045 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom > h += 1;
21046 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom > }
21047  
21048 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom > return {
21049 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom > x: x,
21050 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom > y: y,
21051 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom > width: w,
21052 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom > height: h
21053 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom > };
21054 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom > },
21055  
21056 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom > /**
21057 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom > * Translate each point to the plot area coordinate system and find shape positions
21058 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom > */
21059 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom > translate: function() {
21060 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom > var series = this,
21061 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom > chart = series.chart,
21062 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom > options = series.options,
21063 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom > dense = series.dense = series.closestPointRange * series.xAxis.transA < 2,
21064 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, borderWidth = series.borderWidth = pick(
21065 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, options.borderWidth,
21066 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, dense ? 0 : 1 // #3635
21067 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, ),
21068 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, yAxis = series.yAxis,
21069 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, threshold = options.threshold,
21070 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, translatedThreshold = series.translatedThreshold = yAxis.getThreshold(threshold),
21071 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, minPointLength = pick(options.minPointLength, 5),
21072 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, metrics = series.getColumnMetrics(),
21073 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, pointWidth = metrics.width,
21074 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, seriesBarW = series.barW = Math.max(pointWidth, 1 + 2 * borderWidth), // postprocessed for border width
21075 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, pointXOffset = series.pointXOffset = metrics.offset;
21076  
21077 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, if (chart.inverted) {
21078 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, translatedThreshold -= 0.5; // #3355
21079 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, }
21080  
21081 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, // When the pointPadding is 0, we want the columns to be packed tightly, so we allow individual
21082 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, // columns to have individual sizes. When pointPadding is greater, we strive for equal-width
21083 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, // columns (#2694).
21084 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, if (options.pointPadding) {
21085 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, seriesBarW = Math.ceil(seriesBarW);
21086 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, }
21087  
21088 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, Series.prototype.translate.apply(series);
21089  
21090 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, // Record the new values
21091 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, each(series.points, function(point) {
21092 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, var yBottom = pick(point.yBottom, translatedThreshold),
21093 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, safeDistance = 999 + Math.abs(yBottom),
21094 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, plotY = Math.min(Math.max(-safeDistance, point.plotY), yAxis.len + safeDistance), // Don't draw too far outside plot area (#1303, #2241, #4264)
21095 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, barX = point.plotX + pointXOffset,
21096 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, barW = seriesBarW,
21097 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, barY = Math.min(plotY, yBottom),
21098 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, up,
21099 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, barH = Math.max(plotY, yBottom) - barY;
21100  
21101 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, // Handle options.minPointLength
21102 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2, if (Math.abs(barH) < minPointLength) {
21103 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { if (minPointLength) {
21104 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { barH = minPointLength;
21105 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { up = (!yAxis.reversed && !point.negative) || (yAxis.reversed && point.negative);
21106 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { barY = Math.abs(barY - translatedThreshold) > minPointLength ? // stacked
21107 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { yBottom - minPointLength : // keep position
21108 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { translatedThreshold - (up ? minPointLength : 0); // #1485, #4051
21109 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { }
21110 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { }
21111  
21112 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { // Cache for access in polar
21113 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { point.barX = barX;
21114 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { point.pointWidth = pointWidth;
21115  
21116 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { // Fix the tooltip on center of grouped columns (#1216, #424, #3648)
21117 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { point.tooltipPos = chart.inverted ? [yAxis.len + yAxis.pos - chart.plotLeft - plotY, series.xAxis.len - barX - barW / 2, barH] : [barX + barW / 2, plotY + yAxis.pos - chart.plotTop, barH];
21118  
21119 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { // Register shape type and arguments to be used in drawPoints
21120 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { point.shapeType = 'rect';
21121 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { point.shapeArgs = series.crispCol.apply(
21122 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { series,
21123 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { point.isNull ?
21124 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { // #3169, drilldown from null must have a position to work from
21125 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { // #6585, dataLabel should be placed on xAxis, not floating in the middle of the chart
21126 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { [barX, translatedThreshold, barW, 0] : [barX, barY, barW, barH]
21127 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { );
21128 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { });
21129  
21130 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { },
21131  
21132 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { getSymbol: noop,
21133  
21134 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { /**
21135 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { * Use a solid rectangle like the area series types
21136 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { */
21137 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { drawLegendSymbol: LegendSymbolMixin.drawRectangle,
21138  
21139  
21140 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { /**
21141 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { * Columns have no graph
21142 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { */
21143 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { drawGraph: function() {
21144 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { this.group[this.dense ? 'addClass' : 'removeClass']('highcharts-dense-data');
21145 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { },
21146  
21147  
21148 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { /**
21149 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { * Get presentational attributes
21150 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { */
21151 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { pointAttribs: function(point, state) {
21152 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { var options = this.options,
21153 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { stateOptions,
21154 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { ret,
21155 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { p2o = this.pointAttrToOptions || {},
21156 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { strokeOption = p2o.stroke || 'borderColor',
21157 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { strokeWidthOption = p2o['stroke-width'] || 'borderWidth',
21158 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { fill = (point && point.color) || this.color,
21159 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { stroke = point[strokeOption] || options[strokeOption] ||
21160 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { this.color || fill, // set to fill when borderColor null
21161 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { strokeWidth = point[strokeWidthOption] ||
21162 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { options[strokeWidthOption] || this[strokeWidthOption] || 0,
21163 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { dashstyle = options.dashStyle,
21164 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { zone,
21165 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { brightness;
21166  
21167 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { // Handle zone colors
21168 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { if (point && this.zones.length) {
21169 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { zone = point.getZone();
21170 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { fill = point.options.color || (zone && zone.color) || this.color; // When zones are present, don't use point.color (#4267). Changed order (#6527)
21171 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { }
21172  
21173 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { // Select or hover states
21174 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { if (state) {
21175 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { stateOptions = merge(
21176 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { options.states[state],
21177 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { point.options.states && point.options.states[state] || {} // #6401
21178 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { );
21179 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { brightness = stateOptions.brightness;
21180 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { fill = stateOptions.color ||
21181 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { (brightness !== undefined && color(fill).brighten(stateOptions.brightness).get()) ||
21182 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { fill;
21183 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { stroke = stateOptions[strokeOption] || stroke;
21184 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { strokeWidth = stateOptions[strokeWidthOption] || strokeWidth;
21185 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { dashstyle = stateOptions.dashStyle || dashstyle;
21186 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { }
21187  
21188 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { ret = {
21189 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { 'fill': fill,
21190 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { 'stroke': stroke,
21191 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { 'stroke-width': strokeWidth
21192 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { };
21193 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { if (options.borderRadius) {
21194 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { ret.r = options.borderRadius;
21195 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { }
21196  
21197 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { if (dashstyle) {
21198 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { ret.dashstyle = dashstyle;
21199 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { }
21200  
21201 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { return ret;
21202 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { },
21203  
21204  
21205 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { /**
21206 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { * Draw the columns. For bars, the series.group is rotated, so the same coordinates
21207 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { * apply for columns and bars. This method is inherited by scatter series.
21208 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { *
21209 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { */
21210 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { drawPoints: function() {
21211 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { var series = this,
21212 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { chart = this.chart,
21213 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { options = series.options,
21214 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { renderer = chart.renderer,
21215 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { animationLimit = options.animationLimit || 250,
21216 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { shapeArgs;
21217  
21218 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { // draw the columns
21219 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { each(series.points, function(point) {
21220 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { var plotY = point.plotY,
21221 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { graphic = point.graphic;
21222  
21223 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { if (isNumber(plotY) && point.y !== null) {
21224 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { shapeArgs = point.shapeArgs;
21225  
21226 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { if (graphic) { // update
21227 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) { graphic[chart.pointCount < animationLimit ? 'animate' : 'attr'](
21228 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( merge(shapeArgs)
21229 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( );
21230  
21231 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( } else {
21232 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( point.graphic = graphic = renderer[point.shapeType](shapeArgs)
21233 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( .add(point.group || series.group);
21234 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21235  
21236  
21237 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // Presentational
21238 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( graphic
21239 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( .attr(series.pointAttribs(point, point.selected && 'select'))
21240 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( .shadow(options.shadow, null, options.stacking && !options.borderRadius);
21241  
21242  
21243 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( graphic.addClass(point.getClassName(), true);
21244  
21245  
21246 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( } else if (graphic) {
21247 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( point.graphic = graphic.destroy(); // #1269
21248 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21249 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( });
21250 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( },
21251  
21252 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( /**
21253 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( * Animate the column heights one by one from zero
21254 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( * @param {Boolean} init Whether to initialize the animation or run it
21255 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( */
21256 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( animate: function(init) {
21257 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( var series = this,
21258 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( yAxis = this.yAxis,
21259 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( options = series.options,
21260 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( inverted = this.chart.inverted,
21261 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( attr = {},
21262 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( translatedThreshold;
21263  
21264 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( if (svg) { // VML is too slow anyway
21265 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( if (init) {
21266 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( attr.scaleY = 0.001;
21267 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( translatedThreshold = Math.min(yAxis.pos + yAxis.len, Math.max(yAxis.pos, yAxis.toPixels(options.threshold)));
21268 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( if (inverted) {
21269 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( attr.translateX = translatedThreshold - yAxis.len;
21270 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( } else {
21271 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( attr.translateY = translatedThreshold;
21272 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21273 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( series.group.attr(attr);
21274  
21275 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( } else { // run the animation
21276  
21277 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( attr[inverted ? 'translateX' : 'translateY'] = yAxis.pos;
21278 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( series.group.animate(attr, extend(animObject(series.options.animation), {
21279 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // Do the scale synchronously to ensure smooth updating (#5030)
21280 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( step: function(val, fx) {
21281 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( series.group.attr({
21282 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( scaleY: Math.max(0.001, fx.pos) // #5250
21283 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( });
21284 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21285 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }));
21286  
21287 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // delete this function to allow it only once
21288 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( series.animate = null;
21289 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21290 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21291 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( },
21292  
21293 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( /**
21294 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( * Remove this series from the chart
21295 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( */
21296 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( remove: function() {
21297 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( var series = this,
21298 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( chart = series.chart;
21299  
21300 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // column and bar series affects other series of the same type
21301 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // as they are either stacked or grouped
21302 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( if (chart.hasRendered) {
21303 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( each(chart.series, function(otherSeries) {
21304 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( if (otherSeries.type === series.type) {
21305 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( otherSeries.isDirty = true;
21306 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21307 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( });
21308 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21309  
21310 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( Series.prototype.remove.apply(series, arguments);
21311 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21312 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( });
21313  
21314 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }(Highcharts));
21315 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( (function(H) {
21316 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( /**
21317 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( * (c) 2010-2017 Torstein Honsi
21318 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( *
21319 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( * License: www.highcharts.com/license
21320 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( */
21321 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( var Series = H.Series,
21322 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( seriesType = H.seriesType;
21323 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( /**
21324 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( * The scatter series type
21325 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( */
21326 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( seriesType('scatter', 'line', {
21327 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( lineWidth: 0,
21328 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( findNearestPointBy: 'xy',
21329 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( marker: {
21330 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( enabled: true // Overrides auto-enabling in line series (#3647)
21331 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( },
21332 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( tooltip: {
21333  
21334 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( headerFormat: '<span style="color:{point.color}">\u25CF</span> ' +
21335 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( '<span style="font-size: 0.85em"> {series.name}</span><br/>',
21336  
21337 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( pointFormat: 'x: <b>{point.x}</b><br/>y: <b>{point.y}</b><br/>'
21338 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21339  
21340 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // Prototype members
21341 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }, {
21342 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( sorted: false,
21343 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( requireSorting: false,
21344 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( noSharedTooltip: true,
21345 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( trackerGroups: ['group', 'markerGroup', 'dataLabelsGroup'],
21346 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( takeOrdinalPosition: false, // #2342
21347 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( drawGraph: function() {
21348 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( if (this.options.lineWidth) {
21349 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( Series.prototype.drawGraph.call(this);
21350 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21351 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21352 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( });
21353  
21354 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }(Highcharts));
21355 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( (function(H) {
21356 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( /**
21357 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( * (c) 2010-2017 Torstein Honsi
21358 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( *
21359 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( * License: www.highcharts.com/license
21360 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( */
21361 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( var addEvent = H.addEvent,
21362 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( arrayMax = H.arrayMax,
21363 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( defined = H.defined,
21364 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( each = H.each,
21365 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( extend = H.extend,
21366 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( format = H.format,
21367 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( map = H.map,
21368 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( merge = H.merge,
21369 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( noop = H.noop,
21370 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( pick = H.pick,
21371 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( relativeLength = H.relativeLength,
21372 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( Series = H.Series,
21373 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( seriesTypes = H.seriesTypes,
21374 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( stableSort = H.stableSort;
21375  
21376  
21377 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( /**
21378 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( * Generatl distribution algorithm for distributing labels of differing size along a
21379 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( * confined length in two dimensions. The algorithm takes an array of objects containing
21380 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( * a size, a target and a rank. It will place the labels as close as possible to their
21381 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( * targets, skipping the lowest ranked labels if necessary.
21382 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( */
21383 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( H.distribute = function(boxes, len) {
21384  
21385 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( var i,
21386 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( overlapping = true,
21387 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( origBoxes = boxes, // Original array will be altered with added .pos
21388 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( restBoxes = [], // The outranked overshoot
21389 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( box,
21390 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( target,
21391 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( total = 0;
21392  
21393 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( function sortByTarget(a, b) {
21394 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( return a.target - b.target;
21395 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21396  
21397 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // If the total size exceeds the len, remove those boxes with the lowest rank
21398 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( i = boxes.length;
21399 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( while (i--) {
21400 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( total += boxes[i].size;
21401 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21402  
21403 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // Sort by rank, then slice away overshoot
21404 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( if (total > len) {
21405 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( stableSort(boxes, function(a, b) {
21406 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( return (b.rank || 0) - (a.rank || 0);
21407 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( });
21408 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( i = 0;
21409 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( total = 0;
21410 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( while (total <= len) {
21411 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( total += boxes[i].size;
21412 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( i++;
21413 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21414 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( restBoxes = boxes.splice(i - 1, boxes.length);
21415 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21416  
21417 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // Order by target
21418 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( stableSort(boxes, sortByTarget);
21419  
21420  
21421 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // So far we have been mutating the original array. Now
21422 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // create a copy with target arrays
21423 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( boxes = map(boxes, function(box) {
21424 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( return {
21425 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( size: box.size,
21426 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( targets: [box.target]
21427 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( };
21428 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( });
21429  
21430 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( while (overlapping) {
21431 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // Initial positions: target centered in box
21432 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( i = boxes.length;
21433 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( while (i--) {
21434 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( box = boxes[i];
21435 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // Composite box, average of targets
21436 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( target = (Math.min.apply(0, box.targets) + Math.max.apply(0, box.targets)) / 2;
21437 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( box.pos = Math.min(Math.max(0, target - box.size / 2), len - box.size);
21438 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21439  
21440 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // Detect overlap and join boxes
21441 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( i = boxes.length;
21442 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( overlapping = false;
21443 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( while (i--) {
21444 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( if (i > 0 && boxes[i - 1].pos + boxes[i - 1].size > boxes[i].pos) { // Overlap
21445 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( boxes[i - 1].size += boxes[i].size; // Add this size to the previous box
21446 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( boxes[i - 1].targets = boxes[i - 1].targets.concat(boxes[i].targets);
21447  
21448 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // Overlapping right, push left
21449 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( if (boxes[i - 1].pos + boxes[i - 1].size > len) {
21450 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( boxes[i - 1].pos = len - boxes[i - 1].size;
21451 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21452 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( boxes.splice(i, 1); // Remove this item
21453 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( overlapping = true;
21454 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21455 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21456 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21457  
21458 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // Now the composite boxes are placed, we need to put the original boxes within them
21459 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( i = 0;
21460 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( each(boxes, function(box) {
21461 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( var posInCompositeBox = 0;
21462 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( each(box.targets, function() {
21463 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( origBoxes[i].pos = box.pos + posInCompositeBox;
21464 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( posInCompositeBox += origBoxes[i].size;
21465 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( i++;
21466 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( });
21467 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( });
21468  
21469 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // Add the rest (hidden) boxes and sort by target
21470 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( origBoxes.push.apply(origBoxes, restBoxes);
21471 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( stableSort(origBoxes, sortByTarget);
21472 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( };
21473  
21474  
21475 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( /**
21476 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( * Draw the data labels
21477 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( */
21478 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( Series.prototype.drawDataLabels = function() {
21479 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( var series = this,
21480 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( seriesOptions = series.options,
21481 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( options = seriesOptions.dataLabels,
21482 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( points = series.points,
21483 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( pointOptions,
21484 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( generalOptions,
21485 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( hasRendered = series.hasRendered || 0,
21486 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( str,
21487 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( dataLabelsGroup,
21488 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( defer = pick(options.defer, !!seriesOptions.animation),
21489 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( renderer = series.chart.renderer;
21490  
21491 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( if (options.enabled || series._hasPointLabels) {
21492  
21493 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // Process default alignment of data labels for columns
21494 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( if (series.dlProcessOptions) {
21495 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( series.dlProcessOptions(options);
21496 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21497  
21498 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // Create a separate group for the data labels to avoid rotation
21499 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( dataLabelsGroup = series.plotGroup(
21500 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( 'dataLabelsGroup',
21501 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( 'data-labels',
21502 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( defer && !hasRendered ? 'hidden' : 'visible', // #5133
21503 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( options.zIndex || 6
21504 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( );
21505  
21506 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( if (defer) {
21507 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( dataLabelsGroup.attr({
21508 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( opacity: +hasRendered
21509 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }); // #3300
21510 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( if (!hasRendered) {
21511 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( addEvent(series, 'afterAnimate', function() {
21512 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( if (series.visible) { // #2597, #3023, #3024
21513 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( dataLabelsGroup.show(true);
21514 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21515 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( dataLabelsGroup[seriesOptions.animation ? 'animate' : 'attr']({
21516 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( opacity: 1
21517 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }, {
21518 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( duration: 200
21519 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( });
21520 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( });
21521 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21522 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21523  
21524 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // Make the labels for each point
21525 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( generalOptions = options;
21526 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( each(points, function(point) {
21527 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( var enabled,
21528 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( dataLabel = point.dataLabel,
21529 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( labelConfig,
21530 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( attr,
21531 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( rotation,
21532 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( connector = point.connector,
21533 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( isNew = !dataLabel,
21534 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( style;
21535 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // Determine if each data label is enabled
21536 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // @note dataLabelAttribs (like pointAttribs) would eradicate
21537 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // the need for dlOptions, and simplify the section below.
21538 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( pointOptions = point.dlOptions || (point.options && point.options.dataLabels); // dlOptions is used in treemaps
21539 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( enabled = pick(pointOptions && pointOptions.enabled, generalOptions.enabled) && point.y !== null; // #2282, #4641
21540 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( if (enabled) {
21541 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // Create individual options structure that can be extended without
21542 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // affecting others
21543 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( options = merge(generalOptions, pointOptions);
21544 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( labelConfig = point.getLabelConfig();
21545 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( str = options.format ?
21546 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( format(options.format, labelConfig) :
21547 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( options.formatter.call(labelConfig, options);
21548 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( style = options.style;
21549 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( rotation = options.rotation;
21550  
21551 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // Determine the color
21552 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( style.color = pick(options.color, style.color, series.color, '#000000');
21553 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // Get automated contrast color
21554 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( if (style.color === 'contrast') {
21555 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( point.contrastColor = renderer.getContrast(point.color || series.color);
21556 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( style.color = options.inside || pick(point.labelDistance, options.distance) < 0 ||
21557 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( !!seriesOptions.stacking ? point.contrastColor : '#000000';
21558 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21559 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( if (seriesOptions.cursor) {
21560 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( style.cursor = seriesOptions.cursor;
21561 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21562  
21563  
21564 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( attr = {
21565 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( //align: align,
21566  
21567 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( fill: options.backgroundColor,
21568 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( stroke: options.borderColor,
21569 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( 'stroke-width': options.borderWidth,
21570  
21571 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( r: options.borderRadius || 0,
21572 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( rotation: rotation,
21573 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( padding: options.padding,
21574 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( zIndex: 1
21575 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( };
21576  
21577 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // Remove unused attributes (#947)
21578 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( H.objectEach(attr, function(val, name) {
21579 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( if (val === undefined) {
21580 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( delete attr[name];
21581 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21582 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( });
21583 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21584 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // If the point is outside the plot area, destroy it. #678, #820
21585 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( if (dataLabel && (!enabled || !defined(str))) {
21586 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( point.dataLabel = dataLabel = dataLabel.destroy();
21587 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( if (connector) {
21588 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( point.connector = connector.destroy();
21589 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21590 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // Individual labels are disabled if the are explicitly disabled
21591 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // in the point options, or if they fall outside the plot area.
21592 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( } else if (enabled && defined(str)) {
21593 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // create new label
21594 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( if (!dataLabel) {
21595 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( dataLabel = point.dataLabel = renderer[rotation ? 'text' : 'label']( // labels don't support rotation
21596 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( str,
21597 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( 0, -9999,
21598 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( options.shape,
21599 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( null,
21600 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( null,
21601 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( options.useHTML,
21602 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( null,
21603 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( 'data-label'
21604 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( );
21605 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( dataLabel.addClass(
21606 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( 'highcharts-data-label-color-' + point.colorIndex +
21607 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( ' ' + (options.className || '') +
21608 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( (options.useHTML ? 'highcharts-tracker' : '') // #3398
21609 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( );
21610 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( } else {
21611 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( attr.text = str;
21612 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21613 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( dataLabel.attr(attr);
21614  
21615 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // Styles must be applied before add in order to read text bounding box
21616 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( dataLabel.css(style).shadow(options.shadow);
21617  
21618  
21619 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( if (!dataLabel.added) {
21620 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( dataLabel.add(dataLabelsGroup);
21621 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21622 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // Now the data label is created and placed at 0,0, so we need to align it
21623 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( series.alignDataLabel(point, dataLabel, options, null, isNew);
21624 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21625 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( });
21626 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }
21627 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( };
21628  
21629 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( /**
21630 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( * Align each individual data label
21631 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( */
21632 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( Series.prototype.alignDataLabel = function(point, dataLabel, options, alignTo, isNew) {
21633 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( var chart = this.chart,
21634 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( inverted = chart.inverted,
21635 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( plotX = pick(point.plotX, -9999),
21636 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( plotY = pick(point.plotY, -9999),
21637 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( bBox = dataLabel.getBBox(),
21638 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( fontSize,
21639 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( baseline,
21640 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( rotation = options.rotation,
21641 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( normRotation,
21642 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( negRotation,
21643 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( align = options.align,
21644 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( rotCorr, // rotation correction
21645 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // Math.round for rounding errors (#2683), alignTo to allow column labels (#2700)
21646 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( visible =
21647 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( this.visible &&
21648 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( (
21649 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( point.series.forceDL ||
21650 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( chart.isInsidePlot(plotX, Math.round(plotY), inverted) ||
21651 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( (
21652 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( alignTo && chart.isInsidePlot(
21653 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( plotX,
21654 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( inverted ? alignTo.x + 1 : alignTo.y + alignTo.height - 1,
21655 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( inverted
21656 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( )
21657 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( )
21658 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( ),
21659 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( alignAttr, // the final position;
21660 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( justify = pick(options.overflow, 'justify') === 'justify';
21661  
21662 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( if (visible) {
21663  
21664  
21665 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( fontSize = options.style.fontSize;
21666  
21667  
21668 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( baseline = chart.renderer.fontMetrics(fontSize, dataLabel).b;
21669  
21670 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // The alignment box is a singular point
21671 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( alignTo = extend({
21672 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( x: inverted ? chart.plotWidth - plotY : plotX,
21673 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( y: Math.round(inverted ? chart.plotHeight - plotX : plotY),
21674 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( width: 0,
21675 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( height: 0
21676 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }, alignTo);
21677  
21678 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // Add the text size for alignment calculation
21679 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( extend(options, {
21680 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( width: bBox.width,
21681 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( height: bBox.height
21682 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( });
21683  
21684 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // Allow a hook for changing alignment in the last moment, then do the alignment
21685 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( if (rotation) {
21686 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( justify = false; // Not supported for rotated text
21687 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( rotCorr = chart.renderer.rotCorr(baseline, rotation); // #3723
21688 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( alignAttr = {
21689 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( x: alignTo.x + options.x + alignTo.width / 2 + rotCorr.x,
21690 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( y: alignTo.y + options.y + {
21691 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( top: 0,
21692 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( middle: 0.5,
21693 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( bottom: 1
21694 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( }[options.verticalAlign] * alignTo.height
21695 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( };
21696 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( dataLabel[isNew ? 'attr' : 'animate'](alignAttr)
21697 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( .attr({ // #3003
21698 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( align: align
21699 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( });
21700  
21701 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( // Compensate for the rotated label sticking out on the sides
21702 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( normRotation = (rotation + 720) % 360;
21703 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr']( negRotation = normRotation > 180 && normRotation < 360;
21704  
21705 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; if (align === 'left') {
21706 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; alignAttr.y -= negRotation ? bBox.height : 0;
21707 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; } else if (align === 'center') {
21708 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; alignAttr.x -= bBox.width / 2;
21709 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; alignAttr.y -= bBox.height / 2;
21710 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; } else if (align === 'right') {
21711 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; alignAttr.x -= bBox.width;
21712 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; alignAttr.y -= negRotation ? 0 : bBox.height;
21713 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; }
21714  
21715  
21716 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; } else {
21717 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; dataLabel.align(options, null, alignTo);
21718 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; alignAttr = dataLabel.alignAttr;
21719 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; }
21720  
21721 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; // Handle justify or crop
21722 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; if (justify) {
21723 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; point.isLabelJustified = this.justifyDataLabel(
21724 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; dataLabel,
21725 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; options,
21726 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; alignAttr,
21727 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; bBox,
21728 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; alignTo,
21729 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; isNew
21730 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; );
21731  
21732 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; // Now check that the data label is within the plot area
21733 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; } else if (pick(options.crop, true)) {
21734 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; visible = chart.isInsidePlot(alignAttr.x, alignAttr.y) && chart.isInsidePlot(alignAttr.x + bBox.width, alignAttr.y + bBox.height);
21735 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; }
21736  
21737 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; // When we're using a shape, make it possible with a connector or an arrow pointing to thie point
21738 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; if (options.shape && !rotation) {
21739 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; dataLabel[isNew ? 'attr' : 'animate']({
21740 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; anchorX: inverted ? chart.plotWidth - point.plotY : point.plotX,
21741 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; anchorY: inverted ? chart.plotHeight - point.plotX : point.plotY
21742 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; });
21743 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; }
21744 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; }
21745  
21746 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; // Show or hide based on the final aligned position
21747 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; if (!visible) {
21748 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; dataLabel.attr({
21749 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; y: -9999
21750 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; });
21751 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; dataLabel.placed = false; // don't animate back in
21752 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; }
21753  
21754 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; };
21755  
21756 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; /**
21757 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; * If data labels fall partly outside the plot area, align them back in, in a way that
21758 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; * doesn't hide the point.
21759 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; */
21760 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; Series.prototype.justifyDataLabel = function(dataLabel, options, alignAttr, bBox, alignTo, isNew) {
21761 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; var chart = this.chart,
21762 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; align = options.align,
21763 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; verticalAlign = options.verticalAlign,
21764 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; off,
21765 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; justified,
21766 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; padding = dataLabel.box ? 0 : (dataLabel.padding || 0);
21767  
21768 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; // Off left
21769 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; off = alignAttr.x + padding;
21770 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; if (off < 0) {
21771 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; if (align === 'right') {
21772 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; options.align = 'left';
21773 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; } else {
21774 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; options.x = -off;
21775 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; }
21776 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; justified = true;
21777 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; }
21778  
21779 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; // Off right
21780 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; off = alignAttr.x + bBox.width - padding;
21781 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; if (off > chart.plotWidth) {
21782 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; if (align === 'left') {
21783 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; options.align = 'right';
21784 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; } else {
21785 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; options.x = chart.plotWidth - off;
21786 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; }
21787 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; justified = true;
21788 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; }
21789  
21790 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; // Off top
21791 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; off = alignAttr.y + padding;
21792 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; if (off < 0) {
21793 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; if (verticalAlign === 'bottom') {
21794 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; options.verticalAlign = 'top';
21795 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; } else {
21796 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; options.y = -off;
21797 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; }
21798 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; justified = true;
21799 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; }
21800  
21801 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; // Off bottom
21802 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; off = alignAttr.y + bBox.height - padding;
21803 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; if (off > chart.plotHeight) {
21804 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; if (verticalAlign === 'top') {
21805 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; options.verticalAlign = 'bottom';
21806 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; } else {
21807 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; options.y = chart.plotHeight - off;
21808 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; }
21809 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; justified = true;
21810 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; }
21811  
21812 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; if (justified) {
21813 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; dataLabel.placed = !isNew;
21814 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; dataLabel.align(options, null, alignTo);
21815 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; }
21816  
21817 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; return justified;
21818 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; };
21819  
21820 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; /**
21821 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; * Override the base drawDataLabels method by pie specific functionality
21822 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; */
21823 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; if (seriesTypes.pie) {
21824 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; seriesTypes.pie.prototype.drawDataLabels = function() {
21825 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; var series = this,
21826 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; data = series.data,
21827 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; point,
21828 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; chart = series.chart,
21829 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; options = series.options.dataLabels,
21830 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; connectorPadding = pick(options.connectorPadding, 10),
21831 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; connectorWidth = pick(options.connectorWidth, 1),
21832 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; plotWidth = chart.plotWidth,
21833 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; plotHeight = chart.plotHeight,
21834 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; connector,
21835 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; seriesCenter = series.center,
21836 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; radius = seriesCenter[2] / 2,
21837 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; centerY = seriesCenter[1],
21838 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; dataLabel,
21839 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; dataLabelWidth,
21840 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; labelPos,
21841 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; labelHeight,
21842 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; halves = [ // divide the points into right and left halves for anti collision
21843 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; [], // right
21844 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; [] // left
21845 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; ],
21846 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; x,
21847 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; y,
21848 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; visibility,
21849 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; j,
21850 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; overflow = [0, 0, 0, 0]; // top, right, bottom, left
21851  
21852 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; // get out if not enabled
21853 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; if (!series.visible || (!options.enabled && !series._hasPointLabels)) {
21854 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; return;
21855 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; }
21856  
21857 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; // Reset all labels that have been shortened
21858 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; each(data, function(point) {
21859 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; if (point.dataLabel && point.visible && point.dataLabel.shortened) {
21860 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; point.dataLabel
21861 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; .attr({
21862 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; width: 'auto'
21863 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; }).css({
21864 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; width: 'auto',
21865 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; textOverflow: 'clip'
21866 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; });
21867 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; point.dataLabel.shortened = false;
21868 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; }
21869 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; });
21870  
21871  
21872 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; // run parent method
21873 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; Series.prototype.drawDataLabels.apply(series);
21874  
21875 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; each(data, function(point) {
21876 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; if (point.dataLabel && point.visible) { // #407, #2510
21877  
21878 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; // Arrange points for detection collision
21879 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; halves[point.half].push(point);
21880  
21881 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; // Reset positions (#4905)
21882 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; point.dataLabel._pos = null;
21883 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; }
21884 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; });
21885  
21886 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; /* Loop over the points in each half, starting from the top and bottom
21887 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; * of the pie to detect overlapping labels.
21888 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; */
21889 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; each(halves, function(points, i) {
21890  
21891 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; var top,
21892 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; bottom,
21893 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; length = points.length,
21894 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; positions = [],
21895 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; naturalY,
21896 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; sideOverflow,
21897 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; positionsIndex, // Point index in positions array.
21898 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; size;
21899  
21900 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; if (!length) {
21901 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; return;
21902 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; }
21903  
21904 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; // Sort by angle
21905 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; series.sortByAngle(points, i - 0.5);
21906 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; // Only do anti-collision when we have dataLabels outside the pie
21907 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; // and have connectors. (#856)
21908 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; if (series.maxLabelDistance > 0) {
21909 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; top = Math.max(
21910 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; 0,
21911 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; centerY - radius - series.maxLabelDistance
21912 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; );
21913 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; bottom = Math.min(
21914 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; centerY + radius + series.maxLabelDistance,
21915 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; chart.plotHeight
21916 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; );
21917 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; each(points, function(point) {
21918 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; // check if specific points' label is outside the pie
21919 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; if (point.labelDistance > 0 && point.dataLabel) {
21920 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; // point.top depends on point.labelDistance value
21921 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; // Used for calculation of y value in getX method
21922 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; point.top = Math.max(
21923 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; 0,
21924 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; centerY - radius - point.labelDistance
21925 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; );
21926 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; point.bottom = Math.min(
21927 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; centerY + radius + point.labelDistance,
21928 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; chart.plotHeight
21929 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; );
21930 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; size = point.dataLabel.getBBox().height || 21;
21931  
21932 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; // point.positionsIndex is needed for getting index of
21933 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; // parameter related to specific point inside positions
21934 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; // array - not every point is in positions array.
21935 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; point.positionsIndex = positions.push({
21936 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; target: point.labelPos[1] - point.top + size / 2,
21937 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; size: size,
21938 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; rank: point.y
21939 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; }) - 1;
21940 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; }
21941 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; });
21942 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; H.distribute(positions, bottom + size - top);
21943 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; }
21944  
21945 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; // Now the used slots are sorted, fill them up sequentially
21946 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360; for (j = 0; j < length; j++) {
21947  
21948 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) { point = points[j];
21949 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) { positionsIndex = point.positionsIndex;
21950 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) { labelPos = point.labelPos;
21951 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) { dataLabel = point.dataLabel;
21952 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) { visibility = point.visible === false ? 'hidden' : 'inherit';
21953 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) { naturalY = labelPos[1];
21954  
21955 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) { if (positions && defined(positions[positionsIndex])) {
21956 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) { if (positions[positionsIndex].pos === undefined) {
21957 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) { visibility = 'hidden';
21958 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) { } else {
21959 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) { labelHeight = positions[positionsIndex].size;
21960 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) { y = point.top + positions[positionsIndex].pos;
21961 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) { }
21962  
21963 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) { } else {
21964 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) { y = naturalY;
21965 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) { }
21966  
21967 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) { // It is needed to delete point.positionIndex for
21968 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) { // dynamically added points etc.
21969  
21970 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) { delete point.positionIndex;
21971  
21972 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) { // get the x - use the natural x position for labels near the
21973 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) { // top and bottom, to prevent the top and botton slice connectors
21974 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) { // from touching each other on either side
21975 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) { if (options.justify) {
21976 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) { x = seriesCenter[0] + (i ? -1 : 1) * (radius + point.labelDistance);
21977 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) { } else {
21978 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) { x = series.getX(y < point.top + 2 || y > point.bottom - 2 ? naturalY : y, i, point);
21979 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y > }
21980  
21981  
21982 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y > // Record the placement and visibility
21983 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y > dataLabel._attr = {
21984 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y > visibility: visibility,
21985 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y > align: labelPos[6]
21986 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y > };
21987 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y > dataLabel._pos = {
21988 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y > x: x + options.x +
21989 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y > ({
21990 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y > left: connectorPadding,
21991 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y > right: -connectorPadding
21992 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y > }[labelPos[6]] || 0),
21993 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y > y: y + options.y - 10 // 10 is for the baseline (label vs text)
21994 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y > };
21995 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y > labelPos.x = x;
21996 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y > labelPos.y = y;
21997  
21998  
21999 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y > // Detect overflowing data labels
22000 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y > dataLabelWidth = dataLabel.getBBox().width;
22001  
22002 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y > sideOverflow = null;
22003 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y > // Overflow left
22004 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y > if (x - dataLabelWidth < connectorPadding) {
22005 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { sideOverflow = Math.round(
22006 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { dataLabelWidth - x + connectorPadding
22007 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { );
22008 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { overflow[3] = Math.max(sideOverflow, overflow[3]);
22009  
22010 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { // Overflow right
22011 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { } else if (x + dataLabelWidth > plotWidth - connectorPadding) {
22012 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { sideOverflow = Math.round(
22013 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { x + dataLabelWidth - plotWidth + connectorPadding
22014 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { );
22015 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { overflow[1] = Math.max(sideOverflow, overflow[1]);
22016 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { }
22017  
22018 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { // Overflow top
22019 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { if (y - labelHeight / 2 < 0) {
22020 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { overflow[0] = Math.max(
22021 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { Math.round(-y + labelHeight / 2),
22022 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { overflow[0]
22023 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { );
22024  
22025 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { // Overflow left
22026 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { } else if (y + labelHeight / 2 > plotHeight) {
22027 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { overflow[2] = Math.max(
22028 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { Math.round(y + labelHeight / 2 - plotHeight),
22029 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { overflow[2]
22030 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { );
22031 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { }
22032 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { dataLabel.sideOverflow = sideOverflow;
22033 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { } // for each point
22034 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { }); // for each half
22035  
22036 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { // Do not apply the final placement and draw the connectors until we have verified
22037 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { // that labels are not spilling over.
22038 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { if (arrayMax(overflow) === 0 || this.verifyDataLabelOverflow(overflow)) {
22039  
22040 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { // Place the labels in the final position
22041 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { this.placeDataLabels();
22042  
22043 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { // Draw the connectors
22044 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { if (connectorWidth) {
22045 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { each(this.points, function(point) {
22046 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { var isNew;
22047  
22048 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { connector = point.connector;
22049 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { dataLabel = point.dataLabel;
22050  
22051 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { if (
22052 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { dataLabel &&
22053 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { dataLabel._pos &&
22054 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { point.visible &&
22055 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { point.labelDistance > 0
22056 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { ) {
22057 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { visibility = dataLabel._attr.visibility;
22058  
22059 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { isNew = !connector;
22060  
22061 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { if (isNew) {
22062 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { point.connector = connector = chart.renderer.path()
22063 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { .addClass('highcharts-data-label-connector highcharts-color-' + point.colorIndex)
22064 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { .add(series.dataLabelsGroup);
22065  
22066  
22067 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { connector.attr({
22068 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { 'stroke-width': connectorWidth,
22069 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { 'stroke': options.connectorColor || point.color || '#666666'
22070 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { });
22071  
22072 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { }
22073 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { connector[isNew ? 'attr' : 'animate']({
22074 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { d: series.connectorPath(point.labelPos)
22075 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { });
22076 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { connector.attr('visibility', visibility);
22077  
22078 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { } else if (connector) {
22079 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { point.connector = connector.destroy();
22080 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { }
22081 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { });
22082 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { }
22083 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { }
22084 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { };
22085  
22086 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { /**
22087 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { * Extendable method for getting the path of the connector between the data label
22088 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { * and the pie slice.
22089 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { */
22090 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { seriesTypes.pie.prototype.connectorPath = function(labelPos) {
22091 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { var x = labelPos.x,
22092 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { y = labelPos.y;
22093 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { return pick(this.options.dataLabels.softConnector, true) ? [
22094 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { 'M',
22095 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { x + (labelPos[6] === 'left' ? 5 : -5), y, // end of the string at the label
22096 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { 'C',
22097 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { x, y, // first break, next to the label
22098 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { 2 * labelPos[2] - labelPos[4], 2 * labelPos[3] - labelPos[5],
22099 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { labelPos[2], labelPos[3], // second break
22100 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { 'L',
22101 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { labelPos[4], labelPos[5] // base
22102 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { ] : [
22103 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { 'M',
22104 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { x + (labelPos[6] === 'left' ? 5 : -5), y, // end of the string at the label
22105 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { 'L',
22106 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { labelPos[2], labelPos[3], // second break
22107 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { 'L',
22108 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { labelPos[4], labelPos[5] // base
22109 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { ];
22110 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { };
22111  
22112 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { /**
22113 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { * Perform the final placement of the data labels after we have verified that they
22114 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { * fall within the plot area.
22115 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { */
22116 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { seriesTypes.pie.prototype.placeDataLabels = function() {
22117 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { each(this.points, function(point) {
22118 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { var dataLabel = point.dataLabel,
22119 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { _pos;
22120 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { if (dataLabel && point.visible) {
22121 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { _pos = dataLabel._pos;
22122 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { if (_pos) {
22123  
22124 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { // Shorten data labels with ellipsis if they still overflow
22125 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { // after the pie has reached minSize (#223).
22126 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { if (dataLabel.sideOverflow) {
22127 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { dataLabel._attr.width =
22128 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { dataLabel.getBBox().width - dataLabel.sideOverflow;
22129 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { dataLabel.css({
22130 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { width: dataLabel._attr.width + 'px',
22131 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { textOverflow: 'ellipsis'
22132 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { });
22133 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { dataLabel.shortened = true;
22134 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { }
22135  
22136 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { dataLabel.attr(dataLabel._attr);
22137 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { dataLabel[dataLabel.moved ? 'animate' : 'attr'](_pos);
22138 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { dataLabel.moved = true;
22139 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { } else if (dataLabel) {
22140 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { dataLabel.attr({
22141 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { y: -9999
22142 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { });
22143 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { }
22144 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { }
22145 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { }, this);
22146 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { };
22147  
22148 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { seriesTypes.pie.prototype.alignDataLabel = noop;
22149  
22150 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { /**
22151 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { * Verify whether the data labels are allowed to draw, or we should run more translation and data
22152 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { * label positioning to keep them inside the plot area. Returns true when data labels are ready
22153 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { * to draw.
22154 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { */
22155 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { seriesTypes.pie.prototype.verifyDataLabelOverflow = function(overflow) {
22156  
22157 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { var center = this.center,
22158 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { options = this.options,
22159 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { centerOption = options.center,
22160 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { minSize = options.minSize || 80,
22161 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { newSize = minSize,
22162 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { // If a size is set, return true and don't try to shrink the pie
22163 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { // to fit the labels.
22164 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { ret = options.size !== null;
22165  
22166 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { if (!ret) {
22167 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { // Handle horizontal size and center
22168 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { if (centerOption[0] !== null) { // Fixed center
22169 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { newSize = Math.max(center[2] -
22170 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { Math.max(overflow[1], overflow[3]), minSize);
22171  
22172 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { } else { // Auto center
22173 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { newSize = Math.max(
22174 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { // horizontal overflow
22175 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { center[2] - overflow[1] - overflow[3],
22176 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { minSize
22177 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { );
22178 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { // horizontal center
22179 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { center[0] += (overflow[3] - overflow[1]) / 2;
22180 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { }
22181  
22182 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { // Handle vertical size and center
22183 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { if (centerOption[1] !== null) { // Fixed center
22184 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { newSize = Math.max(Math.min(newSize, center[2] -
22185 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { Math.max(overflow[0], overflow[2])), minSize);
22186  
22187 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { } else { // Auto center
22188 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { newSize = Math.max(
22189 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { Math.min(
22190 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { newSize,
22191 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { // vertical overflow
22192 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { center[2] - overflow[0] - overflow[2]
22193 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { ),
22194 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { minSize
22195 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { );
22196 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { // vertical center
22197 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { center[1] += (overflow[0] - overflow[2]) / 2;
22198 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { }
22199  
22200 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { // If the size must be decreased, we need to run translate and
22201 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { // drawDataLabels again
22202 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) { if (newSize < center[2]) {
22203 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) { center[2] = newSize;
22204 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) { center[3] = Math.min( // #3632
22205 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) { relativeLength(options.innerSize || 0, newSize),
22206 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) { newSize
22207 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) { );
22208 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) { this.translate(center);
22209  
22210 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) { if (this.drawDataLabels) {
22211 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) { this.drawDataLabels();
22212 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) { }
22213 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) { // Else, return true to indicate that the pie and its labels is
22214 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) { // within the plot area
22215 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) { } else {
22216 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) { ret = true;
22217 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) { }
22218 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) { }
22219 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) { return ret;
22220 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) { };
22221 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) { }
22222  
22223 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) { if (seriesTypes.column) {
22224  
22225 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) { /**
22226 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) { * Override the basic data label alignment by adjusting for the position of the column
22227 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) { */
22228 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) { seriesTypes.column.prototype.alignDataLabel = function(point, dataLabel, options, alignTo, isNew) {
22229 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) { var inverted = this.chart.inverted,
22230 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) { series = point.series,
22231 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) { dlBox = point.dlBox || point.shapeArgs, // data label box for alignment
22232 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) { below = pick(point.below, point.plotY > pick(this.translatedThreshold, series.yAxis.len)), // point.below is used in range series
22233 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) { inside = pick(options.inside, !!this.options.stacking), // draw it inside the box?
22234 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) { overshoot;
22235  
22236 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) { // Align to the column itself, or the top of it
22237 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) { if (dlBox) { // Area range uses this method but not alignTo
22238 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) { alignTo = merge(dlBox);
22239  
22240 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) { if (alignTo.y < 0) {
22241 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { alignTo.height += alignTo.y;
22242 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { alignTo.y = 0;
22243 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22244 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { overshoot = alignTo.y + alignTo.height - series.yAxis.len;
22245 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (overshoot > 0) {
22246 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { alignTo.height -= overshoot;
22247 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22248  
22249 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (inverted) {
22250 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { alignTo = {
22251 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { x: series.yAxis.len - alignTo.y - alignTo.height,
22252 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { y: series.xAxis.len - alignTo.x - alignTo.width,
22253 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { width: alignTo.height,
22254 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { height: alignTo.width
22255 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { };
22256 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22257  
22258 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // Compute the alignment box
22259 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (!inside) {
22260 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (inverted) {
22261 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { alignTo.x += below ? 0 : alignTo.width;
22262 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { alignTo.width = 0;
22263 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { } else {
22264 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { alignTo.y += below ? alignTo.height : 0;
22265 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { alignTo.height = 0;
22266 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22267 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22268 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22269  
22270  
22271 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // When alignment is undefined (typically columns and bars), display the individual
22272 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // point below or above the point depending on the threshold
22273 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { options.align = pick(
22274 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { options.align, !inverted || inside ? 'center' : below ? 'right' : 'left'
22275 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { );
22276 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { options.verticalAlign = pick(
22277 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { options.verticalAlign,
22278 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { inverted || inside ? 'middle' : below ? 'top' : 'bottom'
22279 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { );
22280  
22281 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // Call the parent method
22282 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { Series.prototype.alignDataLabel.call(this, point, dataLabel, options, alignTo, isNew);
22283  
22284 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // If label was justified and we have contrast, set it:
22285 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (point.isLabelJustified && point.contrastColor) {
22286 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { point.dataLabel.css({
22287 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { color: point.contrastColor
22288 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { });
22289 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22290 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { };
22291 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22292  
22293 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }(Highcharts));
22294 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { (function(H) {
22295 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { /**
22296 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * (c) 2009-2017 Torstein Honsi
22297 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { *
22298 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * License: www.highcharts.com/license
22299 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { */
22300 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { /**
22301 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * Highcharts module to hide overlapping data labels. This module is included in
22302 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * Highcharts.
22303 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { */
22304 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { var Chart = H.Chart,
22305 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { each = H.each,
22306 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { pick = H.pick,
22307 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { addEvent = H.addEvent;
22308  
22309 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // Collect potensial overlapping data labels. Stack labels probably don't need
22310 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // to be considered because they are usually accompanied by data labels that lie
22311 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // inside the columns.
22312 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { Chart.prototype.callbacks.push(function(chart) {
22313 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { function collectAndHide() {
22314 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { var labels = [];
22315  
22316 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { each(chart.series || [], function(series) {
22317 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { var dlOptions = series.options.dataLabels,
22318 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // Range series have two collections
22319 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { collections = series.dataLabelCollections || ['dataLabel'];
22320  
22321 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (
22322 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { (dlOptions.enabled || series._hasPointLabels) &&
22323 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { !dlOptions.allowOverlap &&
22324 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { series.visible
22325 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { ) { // #3866
22326 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { each(collections, function(coll) {
22327 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { each(series.points, function(point) {
22328 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (point[coll]) {
22329 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { point[coll].labelrank = pick(
22330 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { point.labelrank,
22331 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { point.shapeArgs && point.shapeArgs.height
22332 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { ); // #4118
22333 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { labels.push(point[coll]);
22334 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22335 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { });
22336 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { });
22337 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22338 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { });
22339 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { chart.hideOverlappingLabels(labels);
22340 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22341  
22342 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // Do it now ...
22343 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { collectAndHide();
22344  
22345 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // ... and after each chart redraw
22346 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { addEvent(chart, 'redraw', collectAndHide);
22347  
22348 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { });
22349  
22350 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { /**
22351 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * Hide overlapping labels. Labels are moved and faded in and out on zoom to
22352 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * provide a smooth visual imression.
22353 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { */
22354 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { Chart.prototype.hideOverlappingLabels = function(labels) {
22355  
22356 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { var len = labels.length,
22357 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { label,
22358 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { i,
22359 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { j,
22360 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { label1,
22361 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { label2,
22362 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { isIntersecting,
22363 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { pos1,
22364 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { pos2,
22365 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { parent1,
22366 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { parent2,
22367 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { padding,
22368 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { intersectRect = function(x1, y1, w1, h1, x2, y2, w2, h2) {
22369 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { return !(
22370 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { x2 > x1 + w1 ||
22371 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { x2 + w2 < x1 ||
22372 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { y2 > y1 + h1 ||
22373 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { y2 + h2 < y1
22374 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { );
22375 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { };
22376  
22377 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // Mark with initial opacity
22378 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { for (i = 0; i < len; i++) {
22379 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { label = labels[i];
22380 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (label) {
22381 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { label.oldOpacity = label.opacity;
22382 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { label.newOpacity = 1;
22383 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22384 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22385  
22386 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // Prevent a situation in a gradually rising slope, that each label will
22387 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // hide the previous one because the previous one always has lower rank.
22388 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { labels.sort(function(a, b) {
22389 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { return (b.labelrank || 0) - (a.labelrank || 0);
22390 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { });
22391  
22392 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // Detect overlapping labels
22393 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { for (i = 0; i < len; i++) {
22394 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { label1 = labels[i];
22395  
22396 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { for (j = i + 1; j < len; ++j) {
22397 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { label2 = labels[j];
22398 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (
22399 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { label1 && label2 &&
22400 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { label1 !== label2 && // #6465, polar chart with connectEnds
22401 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { label1.placed && label2.placed &&
22402 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { label1.newOpacity !== 0 && label2.newOpacity !== 0
22403 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { ) {
22404 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { pos1 = label1.alignAttr;
22405 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { pos2 = label2.alignAttr;
22406 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // Different panes have different positions
22407 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { parent1 = label1.parentGroup;
22408 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { parent2 = label2.parentGroup;
22409 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // Substract the padding if no background or border (#4333)
22410 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { padding = 2 * (label1.box ? 0 : label1.padding);
22411 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { isIntersecting = intersectRect(
22412 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { pos1.x + parent1.translateX,
22413 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { pos1.y + parent1.translateY,
22414 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { label1.width - padding,
22415 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { label1.height - padding,
22416 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { pos2.x + parent2.translateX,
22417 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { pos2.y + parent2.translateY,
22418 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { label2.width - padding,
22419 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { label2.height - padding
22420 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { );
22421  
22422 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (isIntersecting) {
22423 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { (label1.labelrank < label2.labelrank ? label1 : label2)
22424 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { .newOpacity = 0;
22425 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22426 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22427 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22428 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22429  
22430 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // Hide or show
22431 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { each(labels, function(label) {
22432 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { var complete,
22433 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { newOpacity;
22434  
22435 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (label) {
22436 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { newOpacity = label.newOpacity;
22437  
22438 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (label.oldOpacity !== newOpacity && label.placed) {
22439  
22440 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // Make sure the label is completely hidden to avoid catching
22441 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // clicks (#4362)
22442 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (newOpacity) {
22443 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { label.show(true);
22444 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { } else {
22445 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { complete = function() {
22446 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { label.hide();
22447 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { };
22448 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22449  
22450 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // Animate or set the opacity
22451 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { label.alignAttr.opacity = newOpacity;
22452 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { label[label.isOld ? 'animate' : 'attr'](
22453 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { label.alignAttr,
22454 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { null,
22455 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { complete
22456 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { );
22457  
22458 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22459 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { label.isOld = true;
22460 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22461 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { });
22462 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { };
22463  
22464 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }(Highcharts));
22465 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { (function(H) {
22466 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { /**
22467 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * (c) 2010-2017 Torstein Honsi
22468 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { *
22469 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * License: www.highcharts.com/license
22470 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { */
22471 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { var addEvent = H.addEvent,
22472 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { Chart = H.Chart,
22473 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { createElement = H.createElement,
22474 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { css = H.css,
22475 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { defaultOptions = H.defaultOptions,
22476 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { defaultPlotOptions = H.defaultPlotOptions,
22477 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { each = H.each,
22478 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { extend = H.extend,
22479 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { fireEvent = H.fireEvent,
22480 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { hasTouch = H.hasTouch,
22481 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { inArray = H.inArray,
22482 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { isObject = H.isObject,
22483 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { Legend = H.Legend,
22484 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { merge = H.merge,
22485 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { pick = H.pick,
22486 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { Point = H.Point,
22487 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { Series = H.Series,
22488 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { seriesTypes = H.seriesTypes,
22489 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { svg = H.svg,
22490 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { TrackerMixin;
22491  
22492 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { /**
22493 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * TrackerMixin for points and graphs.
22494 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { *
22495 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * @mixin
22496 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { */
22497 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { TrackerMixin = H.TrackerMixin = {
22498  
22499 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { /**
22500 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * Draw the tracker for a point.
22501 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { */
22502 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { drawTrackerPoint: function() {
22503 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { var series = this,
22504 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { chart = series.chart,
22505 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { pointer = chart.pointer,
22506 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { onMouseOver = function(e) {
22507 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { var point = pointer.getPointFromEvent(e);
22508 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // undefined on graph in scatterchart
22509 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (point !== undefined) {
22510 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { pointer.isDirectTouch = true;
22511 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { point.onMouseOver(e);
22512 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22513 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { };
22514  
22515 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // Add reference to the point
22516 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { each(series.points, function(point) {
22517 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (point.graphic) {
22518 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { point.graphic.element.point = point;
22519 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22520 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (point.dataLabel) {
22521 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (point.dataLabel.div) {
22522 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { point.dataLabel.div.point = point;
22523 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { } else {
22524 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { point.dataLabel.element.point = point;
22525 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22526 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22527 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { });
22528  
22529 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // Add the event listeners, we need to do this only once
22530 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (!series._hasTracking) {
22531 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { each(series.trackerGroups, function(key) {
22532 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (series[key]) { // we don't always have dataLabelsGroup
22533 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { series[key]
22534 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { .addClass('highcharts-tracker')
22535 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { .on('mouseover', onMouseOver)
22536 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { .on('mouseout', function(e) {
22537 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { pointer.onTrackerMouseOut(e);
22538 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { });
22539 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (hasTouch) {
22540 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { series[key].on('touchstart', onMouseOver);
22541 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22542  
22543  
22544 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (series.options.cursor) {
22545 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { series[key]
22546 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { .css(css)
22547 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { .css({
22548 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { cursor: series.options.cursor
22549 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { });
22550 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22551  
22552 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22553 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { });
22554 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { series._hasTracking = true;
22555 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22556 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { },
22557  
22558 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { /**
22559 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * Draw the tracker object that sits above all data labels and markers to
22560 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * track mouse events on the graph or points. For the line type charts
22561 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * the tracker uses the same graphPath, but with a greater stroke width
22562 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * for better control.
22563 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { */
22564 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { drawTrackerGraph: function() {
22565 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { var series = this,
22566 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { options = series.options,
22567 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { trackByArea = options.trackByArea,
22568 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { trackerPath = [].concat(trackByArea ? series.areaPath : series.graphPath),
22569 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { trackerPathLength = trackerPath.length,
22570 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { chart = series.chart,
22571 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { pointer = chart.pointer,
22572 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { renderer = chart.renderer,
22573 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { snap = chart.options.tooltip.snap,
22574 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { tracker = series.tracker,
22575 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { i,
22576 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { onMouseOver = function() {
22577 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (chart.hoverSeries !== series) {
22578 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { series.onMouseOver();
22579 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22580 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { },
22581 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { /*
22582 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * Empirical lowest possible opacities for TRACKER_FILL for an element to stay invisible but clickable
22583 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * IE6: 0.002
22584 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * IE7: 0.002
22585 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * IE8: 0.002
22586 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * IE9: 0.00000000001 (unlimited)
22587 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * IE10: 0.0001 (exporting only)
22588 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * FF: 0.00000000001 (unlimited)
22589 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * Chrome: 0.000001
22590 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * Safari: 0.000001
22591 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * Opera: 0.00000000001 (unlimited)
22592 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { */
22593 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { TRACKER_FILL = 'rgba(192,192,192,' + (svg ? 0.0001 : 0.002) + ')';
22594  
22595 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // Extend end points. A better way would be to use round linecaps,
22596 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // but those are not clickable in VML.
22597 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (trackerPathLength && !trackByArea) {
22598 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { i = trackerPathLength + 1;
22599 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { while (i--) {
22600 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (trackerPath[i] === 'M') { // extend left side
22601 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { trackerPath.splice(i + 1, 0, trackerPath[i + 1] - snap, trackerPath[i + 2], 'L');
22602 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22603 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if ((i && trackerPath[i] === 'M') || i === trackerPathLength) { // extend right side
22604 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { trackerPath.splice(i, 0, 'L', trackerPath[i - 2] + snap, trackerPath[i - 1]);
22605 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22606 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22607 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22608  
22609 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // handle single points
22610 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { /*for (i = 0; i < singlePoints.length; i++) {
22611 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { singlePoint = singlePoints[i];
22612 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { trackerPath.push(M, singlePoint.plotX - snap, singlePoint.plotY,
22613 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { L, singlePoint.plotX + snap, singlePoint.plotY);
22614 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }*/
22615  
22616 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // draw the tracker
22617 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (tracker) {
22618 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { tracker.attr({
22619 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { d: trackerPath
22620 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { });
22621 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { } else if (series.graph) { // create
22622  
22623 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { series.tracker = renderer.path(trackerPath)
22624 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { .attr({
22625 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { 'stroke-linejoin': 'round', // #1225
22626 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { visibility: series.visible ? 'visible' : 'hidden',
22627 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { stroke: TRACKER_FILL,
22628 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { fill: trackByArea ? TRACKER_FILL : 'none',
22629 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { 'stroke-width': series.graph.strokeWidth() + (trackByArea ? 0 : 2 * snap),
22630 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { zIndex: 2
22631 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { })
22632 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { .add(series.group);
22633  
22634 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // The tracker is added to the series group, which is clipped, but is covered
22635 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // by the marker group. So the marker group also needs to capture events.
22636 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { each([series.tracker, series.markerGroup], function(tracker) {
22637 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { tracker.addClass('highcharts-tracker')
22638 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { .on('mouseover', onMouseOver)
22639 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { .on('mouseout', function(e) {
22640 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { pointer.onTrackerMouseOut(e);
22641 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { });
22642  
22643  
22644 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (options.cursor) {
22645 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { tracker.css({
22646 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { cursor: options.cursor
22647 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { });
22648 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22649  
22650  
22651 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (hasTouch) {
22652 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { tracker.on('touchstart', onMouseOver);
22653 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22654 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { });
22655 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22656 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22657 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { };
22658 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { /* End TrackerMixin */
22659  
22660  
22661 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { /**
22662 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * Add tracking event listener to the series group, so the point graphics
22663 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * themselves act as trackers
22664 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { */
22665  
22666 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (seriesTypes.column) {
22667 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { seriesTypes.column.prototype.drawTracker = TrackerMixin.drawTrackerPoint;
22668 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22669  
22670 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (seriesTypes.pie) {
22671 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { seriesTypes.pie.prototype.drawTracker = TrackerMixin.drawTrackerPoint;
22672 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22673  
22674 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (seriesTypes.scatter) {
22675 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { seriesTypes.scatter.prototype.drawTracker = TrackerMixin.drawTrackerPoint;
22676 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22677  
22678 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { /*
22679 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * Extend Legend for item events
22680 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { */
22681 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { extend(Legend.prototype, {
22682  
22683 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { setItemEvents: function(item, legendItem, useHTML) {
22684 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { var legend = this,
22685 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { boxWrapper = legend.chart.renderer.boxWrapper,
22686 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { activeClass = 'highcharts-legend-' + (item.series ? 'point' : 'series') + '-active';
22687  
22688 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // Set the events on the item group, or in case of useHTML, the item itself (#1249)
22689 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { (useHTML ? legendItem : item.legendGroup).on('mouseover', function() {
22690 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { item.setState('hover');
22691  
22692 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // A CSS class to dim or hide other than the hovered series
22693 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { boxWrapper.addClass(activeClass);
22694  
22695  
22696 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { legendItem.css(legend.options.itemHoverStyle);
22697  
22698 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { })
22699 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { .on('mouseout', function() {
22700  
22701 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { legendItem.css(merge(item.visible ? legend.itemStyle : legend.itemHiddenStyle));
22702  
22703  
22704 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // A CSS class to dim or hide other than the hovered series
22705 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { boxWrapper.removeClass(activeClass);
22706  
22707 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { item.setState();
22708 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { })
22709 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { .on('click', function(event) {
22710 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { var strLegendItemClick = 'legendItemClick',
22711 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { fnLegendItemClick = function() {
22712 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (item.setVisible) {
22713 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { item.setVisible();
22714 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22715 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { };
22716  
22717 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // Pass over the click/touch event. #4.
22718 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { event = {
22719 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { browserEvent: event
22720 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { };
22721  
22722 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // click the name or symbol
22723 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (item.firePointEvent) { // point
22724 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { item.firePointEvent(strLegendItemClick, event, fnLegendItemClick);
22725 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { } else {
22726 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { fireEvent(item, strLegendItemClick, event, fnLegendItemClick);
22727 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22728 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { });
22729 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { },
22730  
22731 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { createCheckboxForItem: function(item) {
22732 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { var legend = this;
22733  
22734 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { item.checkbox = createElement('input', {
22735 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { type: 'checkbox',
22736 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { checked: item.selected,
22737 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { defaultChecked: item.selected // required by IE7
22738 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }, legend.options.itemCheckboxStyle, legend.chart.container);
22739  
22740 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { addEvent(item.checkbox, 'click', function(event) {
22741 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { var target = event.target;
22742 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { fireEvent(
22743 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { item.series || item,
22744 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { 'checkboxClick', { // #3712
22745 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { checked: target.checked,
22746 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { item: item
22747 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { },
22748 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { function() {
22749 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { item.select();
22750 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22751 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { );
22752 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { });
22753 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22754 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { });
22755  
22756  
22757  
22758 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // Add pointer cursor to legend itemstyle in defaultOptions
22759 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { defaultOptions.legend.itemStyle.cursor = 'pointer';
22760  
22761  
22762  
22763 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { /*
22764 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * Extend the Chart object with interaction
22765 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { */
22766  
22767 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { extend(Chart.prototype, /** @lends Chart.prototype */ {
22768 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { /**
22769 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * Display the zoom button
22770 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { */
22771 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { showResetZoom: function() {
22772 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { var chart = this,
22773 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { lang = defaultOptions.lang,
22774 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { btnOptions = chart.options.chart.resetZoomButton,
22775 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { theme = btnOptions.theme,
22776 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { states = theme.states,
22777 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { alignTo = btnOptions.relativeTo === 'chart' ? null : 'plotBox';
22778  
22779 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { function zoomOut() {
22780 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { chart.zoomOut();
22781 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22782  
22783 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { this.resetZoomButton = chart.renderer.button(lang.resetZoom, null, null, zoomOut, theme, states && states.hover)
22784 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { .attr({
22785 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { align: btnOptions.position.align,
22786 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { title: lang.resetZoomTitle
22787 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { })
22788 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { .addClass('highcharts-reset-zoom')
22789 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { .add()
22790 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { .align(btnOptions.position, false, alignTo);
22791  
22792 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { },
22793  
22794 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { /**
22795 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * Zoom out to 1:1
22796 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { */
22797 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { zoomOut: function() {
22798 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { var chart = this;
22799 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { fireEvent(chart, 'selection', {
22800 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { resetSelection: true
22801 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }, function() {
22802 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { chart.zoom();
22803 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { });
22804 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { },
22805  
22806 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { /**
22807 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * Zoom into a given portion of the chart given by axis coordinates
22808 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * @param {Object} event
22809 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { */
22810 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { zoom: function(event) {
22811 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { var chart = this,
22812 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { hasZoomed,
22813 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { pointer = chart.pointer,
22814 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { displayButton = false,
22815 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { resetZoomButton;
22816  
22817 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // If zoom is called with no arguments, reset the axes
22818 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (!event || event.resetSelection) {
22819 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { each(chart.axes, function(axis) {
22820 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { hasZoomed = axis.zoom();
22821 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { });
22822 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { } else { // else, zoom in on all axes
22823 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { each(event.xAxis.concat(event.yAxis), function(axisData) {
22824 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { var axis = axisData.axis,
22825 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { isXAxis = axis.isXAxis;
22826  
22827 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // don't zoom more than minRange
22828 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (pointer[isXAxis ? 'zoomX' : 'zoomY']) {
22829 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { hasZoomed = axis.zoom(axisData.min, axisData.max);
22830 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (axis.displayBtn) {
22831 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { displayButton = true;
22832 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22833 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22834 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { });
22835 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22836  
22837 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // Show or hide the Reset zoom button
22838 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { resetZoomButton = chart.resetZoomButton;
22839 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (displayButton && !resetZoomButton) {
22840 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { chart.showResetZoom();
22841 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { } else if (!displayButton && isObject(resetZoomButton)) {
22842 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { chart.resetZoomButton = resetZoomButton.destroy();
22843 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22844  
22845  
22846 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // Redraw
22847 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (hasZoomed) {
22848 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { chart.redraw(
22849 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { pick(chart.options.chart.animation, event && event.animation, chart.pointCount < 100) // animation
22850 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { );
22851 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22852 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { },
22853  
22854 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { /**
22855 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * Pan the chart by dragging the mouse across the pane. This function is called
22856 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * on mouse move, and the distance to pan is computed from chartX compared to
22857 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { * the first chartX position in the dragging operation.
22858 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { */
22859 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { pan: function(e, panning) {
22860  
22861 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { var chart = this,
22862 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { hoverPoints = chart.hoverPoints,
22863 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { doRedraw;
22864  
22865 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { // remove active points for shared tooltip
22866 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { if (hoverPoints) {
22867 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { each(hoverPoints, function(point) {
22868 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { point.setState();
22869 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { });
22870 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { }
22871  
22872 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { each(panning === 'xy' ? [1, 0] : [1], function(isX) { // xy is used in maps
22873 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { var axis = chart[isX ? 'xAxis' : 'yAxis'][0],
22874 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { horiz = axis.horiz,
22875 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { mousePos = e[horiz ? 'chartX' : 'chartY'],
22876 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { mouseDown = horiz ? 'mouseDownX' : 'mouseDownY',
22877 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { startPos = chart[mouseDown],
22878 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { halfPointRange = (axis.pointRange || 0) / 2,
22879 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { extremes = axis.getExtremes(),
22880 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { panMin = axis.toValue(startPos - mousePos, true) +
22881 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { halfPointRange,
22882 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { panMax = axis.toValue(startPos + axis.len - mousePos, true) -
22883 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { halfPointRange,
22884 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) { flipped = panMax < panMin,
22885 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, newMin = flipped ? panMax : panMin,
22886 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, newMax = flipped ? panMin : panMax,
22887 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, paddedMin = Math.min(
22888 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, extremes.dataMin,
22889 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, axis.toValue(
22890 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, axis.toPixels(extremes.min) - axis.minPixelPadding
22891 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, )
22892 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, ),
22893 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, paddedMax = Math.max(
22894 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, extremes.dataMax,
22895 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, axis.toValue(
22896 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, axis.toPixels(extremes.max) + axis.minPixelPadding
22897 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, )
22898 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, ),
22899 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, spill;
22900  
22901 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // If the new range spills over, either to the min or max, adjust
22902 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // the new range.
22903 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, spill = paddedMin - newMin;
22904 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (spill > 0) {
22905 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, newMax += spill;
22906 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, newMin = paddedMin;
22907 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
22908 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, spill = newMax - paddedMax;
22909 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (spill > 0) {
22910 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, newMax = paddedMax;
22911 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, newMin -= spill;
22912 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
22913  
22914 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // Set new extremes if they are actually new
22915 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (axis.series.length && newMin !== extremes.min && newMax !== extremes.max) {
22916 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, axis.setExtremes(
22917 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, newMin,
22918 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, newMax,
22919 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, false,
22920 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, false, {
22921 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, trigger: 'pan'
22922 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
22923 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, );
22924 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, doRedraw = true;
22925 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
22926  
22927 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, chart[mouseDown] = mousePos; // set new reference for next run
22928 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, });
22929  
22930 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (doRedraw) {
22931 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, chart.redraw(false);
22932 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
22933 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, css(chart.container, {
22934 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, cursor: 'move'
22935 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, });
22936 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
22937 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, });
22938  
22939 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, /*
22940 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * Extend the Point object with interaction
22941 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, */
22942 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, extend(Point.prototype, /** @lends Highcharts.Point.prototype */ {
22943 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, /**
22944 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * Toggle the selection status of a point.
22945 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * @param {Boolean} [selected]
22946 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * When `true`, the point is selected. When `false`, the point is
22947 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * unselected. When `null` or `undefined`, the selection state is
22948 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * toggled.
22949 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * @param {Boolean} [accumulate=false]
22950 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * When `true`, the selection is added to other selected points.
22951 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * When `false`, other selected points are deselected. Internally in
22952 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * Highcharts, when {@link http://api.highcharts.com/highcharts/plotOptions.series.allowPointSelect|allowPointSelect}
22953 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * is `true`, selected points are accumulated on Control, Shift or
22954 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * Cmd clicking the point.
22955 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, *
22956 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * @see Highcharts.Chart#getSelectedPoints
22957 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, *
22958 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * @sample highcharts/members/point-select/
22959 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * Select a point from a button
22960 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * @sample highcharts/chart/events-selection-points/
22961 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * Select a range of points through a drag selection
22962 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * @sample maps/series/data-id/
22963 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * Select a point in Highmaps
22964 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, */
22965 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, select: function(selected, accumulate) {
22966 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, var point = this,
22967 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, series = point.series,
22968 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, chart = series.chart;
22969  
22970 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, selected = pick(selected, !point.selected);
22971  
22972 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // fire the event with the default handler
22973 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, point.firePointEvent(selected ? 'select' : 'unselect', {
22974 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, accumulate: accumulate
22975 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }, function() {
22976  
22977 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, /**
22978 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * Whether the point is selected or not.
22979 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * @see Highcharts.Point#select
22980 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * @memberof Highcharts.Point
22981 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * @name selected
22982 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * @type {Boolean}
22983 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, */
22984 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, point.selected = point.options.selected = selected;
22985 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, series.options.data[inArray(point, series.data)] = point.options;
22986  
22987 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, point.setState(selected && 'select');
22988  
22989 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // unselect all other points unless Ctrl or Cmd + click
22990 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (!accumulate) {
22991 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, each(chart.getSelectedPoints(), function(loopPoint) {
22992 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (loopPoint.selected && loopPoint !== point) {
22993 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, loopPoint.selected = loopPoint.options.selected = false;
22994 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, series.options.data[inArray(loopPoint, series.data)] = loopPoint.options;
22995 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, loopPoint.setState('');
22996 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, loopPoint.firePointEvent('unselect');
22997 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
22998 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, });
22999 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23000 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, });
23001 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, },
23002  
23003 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, /**
23004 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * Runs on mouse over the point
23005 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, *
23006 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * @param {Object} e The event arguments
23007 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, */
23008 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, onMouseOver: function(e) {
23009 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, var point = this,
23010 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, series = point.series,
23011 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, chart = series.chart,
23012 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, pointer = chart.pointer;
23013 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, e = e ?
23014 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, pointer.normalize(e) :
23015 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // In cases where onMouseOver is called directly without an event
23016 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, pointer.getChartCoordinatesFromPoint(point, chart.inverted);
23017 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, pointer.runPointActions(e, point);
23018 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, },
23019  
23020 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, /**
23021 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * Runs on mouse out from the point
23022 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, */
23023 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, onMouseOut: function() {
23024 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, var point = this,
23025 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, chart = point.series.chart;
23026 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, point.firePointEvent('mouseOut');
23027 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, each(chart.hoverPoints || [], function(p) {
23028 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, p.setState();
23029 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, });
23030 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, chart.hoverPoints = chart.hoverPoint = null;
23031 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, },
23032  
23033 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, /**
23034 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * Import events from the series' and point's options. Only do it on
23035 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * demand, to save processing time on hovering.
23036 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, */
23037 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, importEvents: function() {
23038 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (!this.hasImportedEvents) {
23039 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, var point = this,
23040 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, options = merge(point.series.options.point, point.options),
23041 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, events = options.events;
23042  
23043 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, point.events = events;
23044  
23045 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, H.objectEach(events, function(event, eventType) {
23046 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, addEvent(point, eventType, event);
23047 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, });
23048 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, this.hasImportedEvents = true;
23049  
23050 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23051 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, },
23052  
23053 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, /**
23054 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * Set the point's state
23055 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * @param {String} state
23056 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, */
23057 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, setState: function(state, move) {
23058 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, var point = this,
23059 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, plotX = Math.floor(point.plotX), // #4586
23060 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, plotY = point.plotY,
23061 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, series = point.series,
23062 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, stateOptions = series.options.states[state] || {},
23063 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, markerOptions = defaultPlotOptions[series.type].marker &&
23064 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, series.options.marker,
23065 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, normalDisabled = markerOptions && markerOptions.enabled === false,
23066 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, markerStateOptions = (markerOptions && markerOptions.states &&
23067 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, markerOptions.states[state]) || {},
23068 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, stateDisabled = markerStateOptions.enabled === false,
23069 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, stateMarkerGraphic = series.stateMarkerGraphic,
23070 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, pointMarker = point.marker || {},
23071 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, chart = series.chart,
23072 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, halo = series.halo,
23073 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, haloOptions,
23074 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, markerAttribs,
23075 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, hasMarkers = markerOptions && series.markerAttribs,
23076 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, newSymbol;
23077  
23078 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, state = state || ''; // empty string
23079  
23080 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (
23081 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // already has this state
23082 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, (state === point.state && !move) ||
23083 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // selected points don't respond to hover
23084 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, (point.selected && state !== 'select') ||
23085 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // series' state options is disabled
23086 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, (stateOptions.enabled === false) ||
23087 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // general point marker's state options is disabled
23088 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, (state && (stateDisabled || (normalDisabled && markerStateOptions.enabled === false))) ||
23089 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // individual point marker's state options is disabled
23090 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, (state && pointMarker.states && pointMarker.states[state] && pointMarker.states[state].enabled === false) // #1610
23091  
23092 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, ) {
23093 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, return;
23094 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23095  
23096 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (hasMarkers) {
23097 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, markerAttribs = series.markerAttribs(point, state);
23098 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23099  
23100 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // Apply hover styles to the existing point
23101 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (point.graphic) {
23102  
23103 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (point.state) {
23104 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, point.graphic.removeClass('highcharts-point-' + point.state);
23105 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23106 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (state) {
23107 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, point.graphic.addClass('highcharts-point-' + state);
23108 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23109  
23110 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, /*attribs = radius ? { // new symbol attributes (#507, #612)
23111 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, x: plotX - radius,
23112 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, y: plotY - radius,
23113 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, width: 2 * radius,
23114 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, height: 2 * radius
23115 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, } : {};*/
23116  
23117  
23118 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, //attribs = merge(series.pointAttribs(point, state), attribs);
23119 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, point.graphic.attr(series.pointAttribs(point, state));
23120  
23121  
23122 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (markerAttribs) {
23123 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, point.graphic.animate(
23124 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, markerAttribs,
23125 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, pick(
23126 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, chart.options.chart.animation, // Turn off globally
23127 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, markerStateOptions.animation,
23128 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, markerOptions.animation
23129 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, )
23130 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, );
23131 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23132  
23133 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // Zooming in from a range with no markers to a range with markers
23134 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (stateMarkerGraphic) {
23135 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, stateMarkerGraphic.hide();
23136 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23137 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, } else {
23138 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // if a graphic is not applied to each point in the normal state, create a shared
23139 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // graphic for the hover state
23140 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (state && markerStateOptions) {
23141 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, newSymbol = pointMarker.symbol || series.symbol;
23142  
23143 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // If the point has another symbol than the previous one, throw away the
23144 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // state marker graphic and force a new one (#1459)
23145 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (stateMarkerGraphic && stateMarkerGraphic.currentSymbol !== newSymbol) {
23146 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, stateMarkerGraphic = stateMarkerGraphic.destroy();
23147 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23148  
23149 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // Add a new state marker graphic
23150 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (!stateMarkerGraphic) {
23151 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (newSymbol) {
23152 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, series.stateMarkerGraphic = stateMarkerGraphic = chart.renderer.symbol(
23153 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, newSymbol,
23154 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, markerAttribs.x,
23155 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, markerAttribs.y,
23156 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, markerAttribs.width,
23157 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, markerAttribs.height
23158 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, )
23159 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, .add(series.markerGroup);
23160 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, stateMarkerGraphic.currentSymbol = newSymbol;
23161 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23162  
23163 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // Move the existing graphic
23164 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, } else {
23165 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, stateMarkerGraphic[move ? 'animate' : 'attr']({ // #1054
23166 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, x: markerAttribs.x,
23167 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, y: markerAttribs.y
23168 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, });
23169 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23170  
23171 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (stateMarkerGraphic) {
23172 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, stateMarkerGraphic.attr(series.pointAttribs(point, state));
23173 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23174  
23175 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23176  
23177 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (stateMarkerGraphic) {
23178 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, stateMarkerGraphic[state && chart.isInsidePlot(plotX, plotY, chart.inverted) ? 'show' : 'hide'](); // #2450
23179 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, stateMarkerGraphic.element.point = point; // #4310
23180 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23181 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23182  
23183 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // Show me your halo
23184 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, haloOptions = stateOptions.halo;
23185 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (haloOptions && haloOptions.size) {
23186 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (!halo) {
23187 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, series.halo = halo = chart.renderer.path()
23188 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // #5818, #5903, #6705
23189 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, .add((point.graphic || stateMarkerGraphic).parentGroup);
23190 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23191 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, halo[move ? 'animate' : 'attr']({
23192 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, d: point.haloPath(haloOptions.size)
23193 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, });
23194 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, halo.attr({
23195 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, 'class': 'highcharts-halo highcharts-color-' +
23196 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, pick(point.colorIndex, series.colorIndex)
23197 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, });
23198 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, halo.point = point; // #6055
23199  
23200  
23201 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, halo.attr(extend({
23202 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, 'fill': point.color || series.color,
23203 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, 'fill-opacity': haloOptions.opacity,
23204 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, 'zIndex': -1 // #4929, IE8 added halo above everything
23205 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }, haloOptions.attributes));
23206  
23207  
23208 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, } else if (halo && halo.point && halo.point.haloPath) {
23209 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // Animate back to 0 on the current halo point (#6055)
23210 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, halo.animate({
23211 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, d: halo.point.haloPath(0)
23212 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, });
23213 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23214  
23215 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, point.state = state;
23216 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, },
23217  
23218 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, /**
23219 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * Get the circular path definition for the halo
23220 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * @param {Number} size The radius of the circular halo.
23221 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * @returns {Array} The path definition
23222 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, */
23223 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, haloPath: function(size) {
23224 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, var series = this.series,
23225 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, chart = series.chart;
23226  
23227 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, return chart.renderer.symbols.circle(
23228 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, Math.floor(this.plotX) - size,
23229 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, this.plotY - size,
23230 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, size * 2,
23231 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, size * 2
23232 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, );
23233 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23234 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, });
23235  
23236 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, /*
23237 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * Extend the Series object with interaction
23238 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, */
23239  
23240 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, extend(Series.prototype, /** @lends Highcharts.Series.prototype */ {
23241 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, /**
23242 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * Series mouse over handler
23243 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, */
23244 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, onMouseOver: function() {
23245 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, var series = this,
23246 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, chart = series.chart,
23247 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, hoverSeries = chart.hoverSeries;
23248  
23249 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // set normal state to previous series
23250 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (hoverSeries && hoverSeries !== series) {
23251 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, hoverSeries.onMouseOut();
23252 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23253  
23254 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // trigger the event, but to save processing time,
23255 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // only if defined
23256 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (series.options.events.mouseOver) {
23257 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, fireEvent(series, 'mouseOver');
23258 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23259  
23260 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // hover this
23261 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, series.setState('hover');
23262 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, chart.hoverSeries = series;
23263 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, },
23264  
23265 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, /**
23266 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * Series mouse out handler
23267 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, */
23268 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, onMouseOut: function() {
23269 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // trigger the event only if listeners exist
23270 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, var series = this,
23271 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, options = series.options,
23272 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, chart = series.chart,
23273 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, tooltip = chart.tooltip,
23274 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, hoverPoint = chart.hoverPoint;
23275  
23276 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, chart.hoverSeries = null; // #182, set to null before the mouseOut event fires
23277  
23278 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // trigger mouse out on the point, which must be in this series
23279 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (hoverPoint) {
23280 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, hoverPoint.onMouseOut();
23281 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23282  
23283 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // fire the mouse out event
23284 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (series && options.events.mouseOut) {
23285 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, fireEvent(series, 'mouseOut');
23286 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23287  
23288  
23289 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // hide the tooltip
23290 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (tooltip && !series.stickyTracking && (!tooltip.shared || series.noSharedTooltip)) {
23291 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, tooltip.hide();
23292 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23293  
23294 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // set normal state
23295 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, series.setState();
23296 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, },
23297  
23298 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, /**
23299 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * Set the state of the graph
23300 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, */
23301 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, setState: function(state) {
23302 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, var series = this,
23303 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, options = series.options,
23304 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, graph = series.graph,
23305 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, stateOptions = options.states,
23306 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, lineWidth = options.lineWidth,
23307 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, attribs,
23308 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, i = 0;
23309  
23310 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, state = state || '';
23311  
23312 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (series.state !== state) {
23313  
23314 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // Toggle class names
23315 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, each([
23316 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, series.group,
23317 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, series.markerGroup,
23318 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, series.dataLabelsGroup
23319 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, ], function(group) {
23320 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (group) {
23321 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // Old state
23322 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (series.state) {
23323 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, group.removeClass('highcharts-series-' + series.state);
23324 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23325 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // New state
23326 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (state) {
23327 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, group.addClass('highcharts-series-' + state);
23328 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23329 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23330 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, });
23331  
23332 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, series.state = state;
23333  
23334  
23335  
23336 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (stateOptions[state] && stateOptions[state].enabled === false) {
23337 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, return;
23338 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23339  
23340 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (state) {
23341 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, lineWidth = stateOptions[state].lineWidth || lineWidth + (stateOptions[state].lineWidthPlus || 0); // #4035
23342 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23343  
23344 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (graph && !graph.dashstyle) { // hover is turned off for dashed lines in VML
23345 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, attribs = {
23346 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, 'stroke-width': lineWidth
23347 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, };
23348  
23349 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // Animate the graph stroke-width. By default a quick animation
23350 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // to hover, slower to un-hover.
23351 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, graph.animate(
23352 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, attribs,
23353 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, pick(
23354 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, series.chart.options.chart.animation,
23355 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, stateOptions[state] && stateOptions[state].animation
23356 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, )
23357 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, );
23358 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, while (series['zone-graph-' + i]) {
23359 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, series['zone-graph-' + i].attr(attribs);
23360 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, i = i + 1;
23361 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23362 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23363  
23364 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23365 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, },
23366  
23367 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, /**
23368 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * Show or hide the series.
23369 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, *
23370 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * @param {Boolean} [visible]
23371 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * True to show the series, false to hide. If undefined, the
23372 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * visibility is toggled.
23373 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * @param {Boolean} [redraw=true]
23374 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * Whether to redraw the chart after the series is altered. If doing
23375 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * more operations on the chart, it is a good idea to set redraw to
23376 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * false and call {@link Chart#redraw|chart.redraw()} after.
23377 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, */
23378 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, setVisible: function(vis, redraw) {
23379 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, var series = this,
23380 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, chart = series.chart,
23381 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, legendItem = series.legendItem,
23382 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, showOrHide,
23383 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, ignoreHiddenSeries = chart.options.chart.ignoreHiddenSeries,
23384 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, oldVisibility = series.visible;
23385  
23386 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // if called without an argument, toggle visibility
23387 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, series.visible = vis = series.options.visible = series.userOptions.visible = vis === undefined ? !oldVisibility : vis; // #5618
23388 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, showOrHide = vis ? 'show' : 'hide';
23389  
23390 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // show or hide elements
23391 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, each(['group', 'dataLabelsGroup', 'markerGroup', 'tracker', 'tt'], function(key) {
23392 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (series[key]) {
23393 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, series[key][showOrHide]();
23394 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23395 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, });
23396  
23397  
23398 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // hide tooltip (#1361)
23399 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (chart.hoverSeries === series || (chart.hoverPoint && chart.hoverPoint.series) === series) {
23400 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, series.onMouseOut();
23401 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23402  
23403  
23404 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (legendItem) {
23405 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, chart.legend.colorizeItem(series, vis);
23406 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23407  
23408  
23409 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // rescale or adapt to resized chart
23410 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, series.isDirty = true;
23411 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // in a stack, all other series are affected
23412 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (series.options.stacking) {
23413 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, each(chart.series, function(otherSeries) {
23414 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (otherSeries.options.stacking && otherSeries.visible) {
23415 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, otherSeries.isDirty = true;
23416 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23417 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, });
23418 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23419  
23420 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // show or hide linked series
23421 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, each(series.linkedSeries, function(otherSeries) {
23422 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, otherSeries.setVisible(vis, false);
23423 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, });
23424  
23425 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (ignoreHiddenSeries) {
23426 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, chart.isDirtyBox = true;
23427 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23428 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (redraw !== false) {
23429 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, chart.redraw();
23430 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23431  
23432 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, fireEvent(series, showOrHide);
23433 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, },
23434  
23435 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, /**
23436 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * Show the series if hidden.
23437 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, *
23438 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * @sample highcharts/members/series-hide/
23439 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * Toggle visibility from a button
23440 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, */
23441 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, show: function() {
23442 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, this.setVisible(true);
23443 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, },
23444  
23445 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, /**
23446 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * Hide the series if visible. If the {@link
23447 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * https://api.highcharts.com/highcharts/chart.ignoreHiddenSeries|
23448 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * chart.ignoreHiddenSeries} option is true, the chart is redrawn without
23449 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * this series.
23450 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, *
23451 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * @sample highcharts/members/series-hide/
23452 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * Toggle visibility from a button
23453 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, */
23454 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, hide: function() {
23455 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, this.setVisible(false);
23456 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, },
23457  
23458  
23459 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, /**
23460 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * Select or unselect the series. This means its {@link
23461 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * Highcharts.Series.selected|selected} property is set, the checkbox in the
23462 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * legend is toggled and when selected, the series is returned by the
23463 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * {@link Highcharts.Chart#getSelectedSeries} function.
23464 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, *
23465 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * @param {Boolean} [selected]
23466 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * True to select the series, false to unselect. If undefined, the
23467 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * selection state is toggled.
23468 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, *
23469 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * @sample highcharts/members/series-select/
23470 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * Select a series from a button
23471 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, */
23472 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, select: function(selected) {
23473 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, var series = this;
23474  
23475 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, series.selected = selected = (selected === undefined) ?
23476 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, !series.selected :
23477 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, selected;
23478  
23479 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (series.checkbox) {
23480 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, series.checkbox.checked = selected;
23481 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23482  
23483 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, fireEvent(series, selected ? 'select' : 'unselect');
23484 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, },
23485  
23486 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, drawTracker: TrackerMixin.drawTrackerGraph
23487 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, });
23488  
23489 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }(Highcharts));
23490 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, (function(H) {
23491 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, /**
23492 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * (c) 2010-2017 Torstein Honsi
23493 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, *
23494 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * License: www.highcharts.com/license
23495 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, */
23496 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, var Chart = H.Chart,
23497 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, each = H.each,
23498 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, inArray = H.inArray,
23499 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, isArray = H.isArray,
23500 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, isObject = H.isObject,
23501 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, pick = H.pick,
23502 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, splat = H.splat;
23503  
23504 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, /**
23505 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * Update the chart based on the current chart/document size and options for
23506 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * responsiveness.
23507 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, */
23508 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, Chart.prototype.setResponsive = function(redraw) {
23509 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, var options = this.options.responsive,
23510 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, ruleIds = [],
23511 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, currentResponsive = this.currentResponsive,
23512 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, currentRuleIds;
23513  
23514 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (options && options.rules) {
23515 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, each(options.rules, function(rule) {
23516 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (rule._id === undefined) {
23517 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, rule._id = H.uniqueKey();
23518 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23519  
23520 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, this.matchResponsiveRule(rule, ruleIds, redraw);
23521 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }, this);
23522 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23523  
23524 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // Merge matching rules
23525 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, var mergedOptions = H.merge.apply(0, H.map(ruleIds, function(ruleId) {
23526 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, return H.find(options.rules, function(rule) {
23527 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, return rule._id === ruleId;
23528 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }).chartOptions;
23529 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }));
23530  
23531 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // Stringified key for the rules that currently apply.
23532 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, ruleIds = ruleIds.toString() || undefined;
23533 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, currentRuleIds = currentResponsive && currentResponsive.ruleIds;
23534  
23535  
23536 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // Changes in what rules apply
23537 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (ruleIds !== currentRuleIds) {
23538  
23539 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // Undo previous rules. Before we apply a new set of rules, we need to
23540 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // roll back completely to base options (#6291).
23541 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (currentResponsive) {
23542 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, this.update(currentResponsive.undoOptions, redraw);
23543 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23544  
23545 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (ruleIds) {
23546 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // Get undo-options for matching rules
23547 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, this.currentResponsive = {
23548 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, ruleIds: ruleIds,
23549 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, mergedOptions: mergedOptions,
23550 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, undoOptions: this.currentOptions(mergedOptions)
23551 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, };
23552  
23553 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, this.update(mergedOptions, redraw);
23554  
23555 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, } else {
23556 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, this.currentResponsive = undefined;
23557 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23558 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23559 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, };
23560  
23561 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, /**
23562 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * Handle a single responsiveness rule
23563 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, */
23564 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, Chart.prototype.matchResponsiveRule = function(rule, matches) {
23565 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, var condition = rule.condition,
23566 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, fn = condition.callback || function() {
23567 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, return this.chartWidth <= pick(condition.maxWidth, Number.MAX_VALUE) &&
23568 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, this.chartHeight <= pick(condition.maxHeight, Number.MAX_VALUE) &&
23569 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, this.chartWidth >= pick(condition.minWidth, 0) &&
23570 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, this.chartHeight >= pick(condition.minHeight, 0);
23571 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, };
23572  
23573 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (fn.call(this)) {
23574 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, matches.push(rule._id);
23575 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23576  
23577 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, };
23578  
23579 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, /**
23580 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * Get the current values for a given set of options. Used before we update
23581 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * the chart with a new responsiveness rule.
23582 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * TODO: Restore axis options (by id?)
23583 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, */
23584 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, Chart.prototype.currentOptions = function(options) {
23585  
23586 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, var ret = {};
23587  
23588 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, /**
23589 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * Recurse over a set of options and its current values,
23590 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * and store the current values in the ret object.
23591 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, */
23592 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, function getCurrent(options, curr, ret, depth) {
23593 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, var i;
23594 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, H.objectEach(options, function(val, key) {
23595 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (!depth && inArray(key, ['series', 'xAxis', 'yAxis']) > -1) {
23596 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, options[key] = splat(options[key]);
23597  
23598 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, ret[key] = [];
23599  
23600 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // Iterate over collections like series, xAxis or yAxis and map
23601 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // the items by index.
23602 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, for (i = 0; i < options[key].length; i++) {
23603 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (curr[key][i]) { // Item exists in current data (#6347)
23604 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, ret[key][i] = {};
23605 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, getCurrent(
23606 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, val[i],
23607 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, curr[key][i],
23608 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, ret[key][i],
23609 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, depth + 1
23610 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, );
23611 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23612 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23613 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, } else if (isObject(val)) {
23614 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, ret[key] = isArray(val) ? [] : {};
23615 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, getCurrent(val, curr[key] || {}, ret[key], depth + 1);
23616 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, } else {
23617 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, ret[key] = curr[key] || null;
23618 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23619 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, });
23620 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23621  
23622 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, getCurrent(options, this.options, ret, 0);
23623 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, return ret;
23624 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, };
23625  
23626 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }(Highcharts));
23627 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, (function(H) {
23628 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, /**
23629 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * (c) 2010-2017 Torstein Honsi
23630 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, *
23631 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * License: www.highcharts.com/license
23632 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, */
23633 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, var Axis = H.Axis,
23634 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, each = H.each,
23635 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, pick = H.pick,
23636 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, wrap = H.wrap;
23637 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, /**
23638 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * Override to use the extreme coordinates from the SVG shape, not the
23639 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * data values
23640 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, */
23641 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, wrap(Axis.prototype, 'getSeriesExtremes', function(proceed) {
23642 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, var isXAxis = this.isXAxis,
23643 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, dataMin,
23644 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, dataMax,
23645 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, xData = [],
23646 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, useMapGeometry;
23647  
23648 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // Remove the xData array and cache it locally so that the proceed method doesn't use it
23649 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (isXAxis) {
23650 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, each(this.series, function(series, i) {
23651 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (series.useMapGeometry) {
23652 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, xData[i] = series.xData;
23653 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, series.xData = [];
23654 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23655 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, });
23656 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23657  
23658 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // Call base to reach normal cartesian series (like mappoint)
23659 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, proceed.call(this);
23660  
23661 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // Run extremes logic for map and mapline
23662 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (isXAxis) {
23663 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, dataMin = pick(this.dataMin, Number.MAX_VALUE);
23664 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, dataMax = pick(this.dataMax, -Number.MAX_VALUE);
23665 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, each(this.series, function(series, i) {
23666 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (series.useMapGeometry) {
23667 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, dataMin = Math.min(dataMin, pick(series.minX, dataMin));
23668 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, dataMax = Math.max(dataMax, pick(series.maxX, dataMin));
23669 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, series.xData = xData[i]; // Reset xData array
23670 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, useMapGeometry = true;
23671 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23672 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, });
23673 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (useMapGeometry) {
23674 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, this.dataMin = dataMin;
23675 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, this.dataMax = dataMax;
23676 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23677 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23678 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, });
23679  
23680 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, /**
23681 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, * Override axis translation to make sure the aspect ratio is always kept
23682 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, */
23683 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, wrap(Axis.prototype, 'setAxisTranslation', function(proceed) {
23684 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, var chart = this.chart,
23685 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, mapRatio,
23686 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, plotRatio = chart.plotWidth / chart.plotHeight,
23687 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, adjustedAxisLength,
23688 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, xAxis = chart.xAxis[0],
23689 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, padAxis,
23690 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, fixTo,
23691 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, fixDiff,
23692 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, preserveAspectRatio;
23693  
23694  
23695 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // Run the parent method
23696 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, proceed.call(this);
23697  
23698 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // Check for map-like series
23699 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (this.coll === 'yAxis' && xAxis.transA !== undefined) {
23700 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, each(this.series, function(series) {
23701 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (series.preserveAspectRatio) {
23702 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, preserveAspectRatio = true;
23703 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23704 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, });
23705 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, }
23706  
23707 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // On Y axis, handle both
23708 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, if (preserveAspectRatio) {
23709  
23710 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // Use the same translation for both axes
23711 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, this.transA = xAxis.transA = Math.min(this.transA, xAxis.transA);
23712  
23713 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, mapRatio = plotRatio / ((xAxis.max - xAxis.min) / (this.max - this.min));
23714  
23715 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, // What axis to pad to put the map in the middle
23716 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin, padAxis = mapRatio < 1 ? this : xAxis;
23717  
23718 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; // Pad it
23719 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; adjustedAxisLength = (padAxis.max - padAxis.min) * padAxis.transA;
23720 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; padAxis.pixelPadding = padAxis.len - adjustedAxisLength;
23721 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; padAxis.minPixelPadding = padAxis.pixelPadding / 2;
23722  
23723 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; fixTo = padAxis.fixTo;
23724 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; if (fixTo) {
23725 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; fixDiff = fixTo[1] - padAxis.toValue(fixTo[0], true);
23726 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; fixDiff *= padAxis.transA;
23727 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; if (Math.abs(fixDiff) > padAxis.minPixelPadding || (padAxis.min === padAxis.dataMin && padAxis.max === padAxis.dataMax)) { // zooming out again, keep within restricted area
23728 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; fixDiff = 0;
23729 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; }
23730 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; padAxis.minPixelPadding -= fixDiff;
23731 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; }
23732 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; }
23733 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; });
23734  
23735 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; /**
23736 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; * Override Axis.render in order to delete the fixTo prop
23737 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; */
23738 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; wrap(Axis.prototype, 'render', function(proceed) {
23739 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; proceed.call(this);
23740 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.fixTo = null;
23741 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; });
23742  
23743 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; }(Highcharts));
23744 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; (function(H) {
23745 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; /**
23746 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; * (c) 2010-2017 Torstein Honsi
23747 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; *
23748 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; * License: www.highcharts.com/license
23749 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; */
23750 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; var Axis = H.Axis,
23751 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; Chart = H.Chart,
23752 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; color = H.color,
23753 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; ColorAxis,
23754 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; each = H.each,
23755 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; extend = H.extend,
23756 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; isNumber = H.isNumber,
23757 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; Legend = H.Legend,
23758 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; LegendSymbolMixin = H.LegendSymbolMixin,
23759 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; noop = H.noop,
23760 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; merge = H.merge,
23761 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; pick = H.pick,
23762 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; wrap = H.wrap;
23763  
23764 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; /**
23765 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; * The ColorAxis object for inclusion in gradient legends
23766 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; */
23767 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; ColorAxis = H.ColorAxis = function() {
23768 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.init.apply(this, arguments);
23769 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; };
23770 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; extend(ColorAxis.prototype, Axis.prototype);
23771 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; extend(ColorAxis.prototype, {
23772 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; defaultColorAxisOptions: {
23773 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; lineWidth: 0,
23774 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; minPadding: 0,
23775 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; maxPadding: 0,
23776 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; gridLineWidth: 1,
23777 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; tickPixelInterval: 72,
23778 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; startOnTick: true,
23779 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; endOnTick: true,
23780 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; offset: 0,
23781 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; marker: {
23782 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; animation: {
23783 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; duration: 50
23784 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; },
23785 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; width: 0.01,
23786  
23787 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; color: '#999999'
23788  
23789 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; },
23790 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; labels: {
23791 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; overflow: 'justify',
23792 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; rotation: 0
23793 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; },
23794 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; minColor: '#e6ebf5',
23795 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; maxColor: '#003399',
23796 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; tickLength: 5,
23797 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; showInLegend: true
23798 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; },
23799  
23800 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; // Properties to preserve after destroy, for Axis.update (#5881, #6025)
23801 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; keepProps: [
23802 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; 'legendGroup',
23803 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; 'legendItemHeight',
23804 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; 'legendItemWidth',
23805 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; 'legendItem',
23806 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; 'legendSymbol'
23807 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; ].concat(Axis.prototype.keepProps),
23808  
23809 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; /**
23810 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; * Initialize the color axis
23811 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; */
23812 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; init: function(chart, userOptions) {
23813 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; var horiz = chart.options.legend.layout !== 'vertical',
23814 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; options;
23815  
23816 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.coll = 'colorAxis';
23817  
23818 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; // Build the options
23819 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; options = merge(this.defaultColorAxisOptions, {
23820 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; side: horiz ? 2 : 1,
23821 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; reversed: !horiz
23822 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; }, userOptions, {
23823 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; opposite: !horiz,
23824 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; showEmpty: false,
23825 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; title: null
23826 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; });
23827  
23828 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; Axis.prototype.init.call(this, chart, options);
23829  
23830 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; // Base init() pushes it to the xAxis array, now pop it again
23831 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; //chart[this.isXAxis ? 'xAxis' : 'yAxis'].pop();
23832  
23833 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; // Prepare data classes
23834 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; if (userOptions.dataClasses) {
23835 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.initDataClasses(userOptions);
23836 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; }
23837 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.initStops();
23838  
23839 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; // Override original axis properties
23840 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.horiz = horiz;
23841 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.zoomEnabled = false;
23842  
23843 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; // Add default values
23844 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.defaultLegendLength = 200;
23845 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; },
23846  
23847 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; initDataClasses: function(userOptions) {
23848 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; var chart = this.chart,
23849 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; dataClasses,
23850 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; colorCounter = 0,
23851 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; colorCount = chart.options.chart.colorCount,
23852 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; options = this.options,
23853 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; len = userOptions.dataClasses.length;
23854 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.dataClasses = dataClasses = [];
23855 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.legendItems = [];
23856  
23857 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; each(userOptions.dataClasses, function(dataClass, i) {
23858 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; var colors;
23859  
23860 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; dataClass = merge(dataClass);
23861 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; dataClasses.push(dataClass);
23862 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; if (!dataClass.color) {
23863 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; if (options.dataClassColor === 'category') {
23864  
23865 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; colors = chart.options.colors;
23866 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; colorCount = colors.length;
23867 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; dataClass.color = colors[colorCounter];
23868  
23869 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; dataClass.colorIndex = colorCounter;
23870  
23871 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; // increase and loop back to zero
23872 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; colorCounter++;
23873 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; if (colorCounter === colorCount) {
23874 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; colorCounter = 0;
23875 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; }
23876 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; } else {
23877 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; dataClass.color = color(options.minColor).tweenTo(
23878 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; color(options.maxColor),
23879 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; len < 2 ? 0.5 : i / (len - 1) // #3219
23880 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; );
23881 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; }
23882 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; }
23883 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; });
23884 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; },
23885  
23886 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; initStops: function() {
23887 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.stops = this.options.stops || [
23888 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; [0, this.options.minColor],
23889 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; [1, this.options.maxColor]
23890 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; ];
23891 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; each(this.stops, function(stop) {
23892 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; stop.color = color(stop[1]);
23893 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; });
23894 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; },
23895  
23896 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; /**
23897 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; * Extend the setOptions method to process extreme colors and color
23898 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; * stops.
23899 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; */
23900 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; setOptions: function(userOptions) {
23901 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; Axis.prototype.setOptions.call(this, userOptions);
23902  
23903 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.options.crosshair = this.options.marker;
23904 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; },
23905  
23906 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; setAxisSize: function() {
23907 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; var symbol = this.legendSymbol,
23908 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; chart = this.chart,
23909 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; legendOptions = chart.options.legend || {},
23910 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; x,
23911 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; y,
23912 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; width,
23913 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; height;
23914  
23915 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; if (symbol) {
23916 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.left = x = symbol.attr('x');
23917 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.top = y = symbol.attr('y');
23918 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.width = width = symbol.attr('width');
23919 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.height = height = symbol.attr('height');
23920 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.right = chart.chartWidth - x - width;
23921 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.bottom = chart.chartHeight - y - height;
23922  
23923 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.len = this.horiz ? width : height;
23924 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.pos = this.horiz ? x : y;
23925 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; } else {
23926 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; // Fake length for disabled legend to avoid tick issues and such (#5205)
23927 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.len = (this.horiz ? legendOptions.symbolWidth : legendOptions.symbolHeight) || this.defaultLegendLength;
23928 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; }
23929 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; },
23930  
23931 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; normalizedValue: function(value) {
23932 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; if (this.isLog) {
23933 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; value = this.val2lin(value);
23934 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; }
23935 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; return 1 - ((this.max - value) / ((this.max - this.min) || 1));
23936 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; },
23937  
23938 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; /**
23939 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; * Translate from a value to a color
23940 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; */
23941 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; toColor: function(value, point) {
23942 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; var pos,
23943 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; stops = this.stops,
23944 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; from,
23945 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; to,
23946 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; color,
23947 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; dataClasses = this.dataClasses,
23948 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; dataClass,
23949 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; i;
23950  
23951 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; if (dataClasses) {
23952 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; i = dataClasses.length;
23953 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; while (i--) {
23954 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; dataClass = dataClasses[i];
23955 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; from = dataClass.from;
23956 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; to = dataClass.to;
23957 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; if ((from === undefined || value >= from) && (to === undefined || value <= to)) {
23958 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; color = dataClass.color;
23959 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; if (point) {
23960 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; point.dataClass = i;
23961 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; point.colorIndex = dataClass.colorIndex;
23962 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; }
23963 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; break;
23964 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; }
23965 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; }
23966  
23967 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; } else {
23968  
23969 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; pos = this.normalizedValue(value);
23970 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; i = stops.length;
23971 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; while (i--) {
23972 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; if (pos > stops[i][0]) {
23973 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; break;
23974 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; }
23975 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; }
23976 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; from = stops[i] || stops[i + 1];
23977 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; to = stops[i + 1] || from;
23978  
23979 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; // The position within the gradient
23980 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; pos = 1 - (to[0] - pos) / ((to[0] - from[0]) || 1);
23981  
23982 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; color = from.color.tweenTo(
23983 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; to.color,
23984 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; pos
23985 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; );
23986 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; }
23987 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; return color;
23988 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; },
23989  
23990 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; /**
23991 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; * Override the getOffset method to add the whole axis groups inside the legend.
23992 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; */
23993 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; getOffset: function() {
23994 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; var group = this.legendGroup,
23995 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; sideOffset = this.chart.axisOffset[this.side];
23996  
23997 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; if (group) {
23998  
23999 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; // Hook for the getOffset method to add groups to this parent group
24000 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.axisParent = group;
24001  
24002 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; // Call the base
24003 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; Axis.prototype.getOffset.call(this);
24004  
24005 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; // First time only
24006 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; if (!this.added) {
24007  
24008 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.added = true;
24009  
24010 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.labelLeft = 0;
24011 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.labelRight = this.width;
24012 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; }
24013 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; // Reset it to avoid color axis reserving space
24014 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.chart.axisOffset[this.side] = sideOffset;
24015 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; }
24016 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; },
24017  
24018 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; /**
24019 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; * Create the color gradient
24020 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; */
24021 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; setLegendColor: function() {
24022 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; var grad,
24023 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; horiz = this.horiz,
24024 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; reversed = this.reversed,
24025 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; one = reversed ? 1 : 0,
24026 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; zero = reversed ? 0 : 1;
24027  
24028 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; grad = horiz ? [one, 0, zero, 0] : [0, zero, 0, one]; // #3190
24029 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.legendColor = {
24030 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; linearGradient: {
24031 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; x1: grad[0],
24032 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; y1: grad[1],
24033 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; x2: grad[2],
24034 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; y2: grad[3]
24035 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; },
24036 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; stops: this.stops
24037 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; };
24038 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; },
24039  
24040 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; /**
24041 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; * The color axis appears inside the legend and has its own legend symbol
24042 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; */
24043 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; drawLegendSymbol: function(legend, item) {
24044 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; var padding = legend.padding,
24045 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; legendOptions = legend.options,
24046 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; horiz = this.horiz,
24047 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; width = pick(legendOptions.symbolWidth, horiz ? this.defaultLegendLength : 12),
24048 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; height = pick(legendOptions.symbolHeight, horiz ? 12 : this.defaultLegendLength),
24049 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; labelPadding = pick(legendOptions.labelPadding, horiz ? 16 : 30),
24050 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; itemDistance = pick(legendOptions.itemDistance, 10);
24051  
24052 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.setLegendColor();
24053  
24054 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; // Create the gradient
24055 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; item.legendSymbol = this.chart.renderer.rect(
24056 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; 0,
24057 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; legend.baseline - 11,
24058 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; width,
24059 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; height
24060 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; ).attr({
24061 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; zIndex: 1
24062 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; }).add(item.legendGroup);
24063  
24064 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; // Set how much space this legend item takes up
24065 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.legendItemWidth = width + padding + (horiz ? itemDistance : labelPadding);
24066 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.legendItemHeight = height + padding + (horiz ? labelPadding : 0);
24067 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; },
24068 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; /**
24069 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; * Fool the legend
24070 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; */
24071 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; setState: noop,
24072 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; visible: true,
24073 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; setVisible: noop,
24074 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; getSeriesExtremes: function() {
24075 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; var series = this.series,
24076 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; i = series.length;
24077 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.dataMin = Infinity;
24078 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.dataMax = -Infinity;
24079 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; while (i--) {
24080 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; if (series[i].valueMin !== undefined) {
24081 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.dataMin = Math.min(this.dataMin, series[i].valueMin);
24082 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; this.dataMax = Math.max(this.dataMax, series[i].valueMax);
24083 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; }
24084 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; }
24085 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; },
24086 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; drawCrosshair: function(e, point) {
24087 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; var plotX = point && point.plotX,
24088 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; plotY = point && point.plotY,
24089 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; crossPos,
24090 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; axisPos = this.pos,
24091 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; axisLen = this.len;
24092  
24093 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; if (point) {
24094 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; crossPos = this.toPixels(point[point.series.colorKey]);
24095 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis; if (crossPos < axisPos) {
24096 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { crossPos = axisPos - 2;
24097 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { } else if (crossPos > axisPos + axisLen) {
24098 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { crossPos = axisPos + axisLen + 2;
24099 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { }
24100  
24101 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { point.plotX = crossPos;
24102 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { point.plotY = this.len - crossPos;
24103 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { Axis.prototype.drawCrosshair.call(this, e, point);
24104 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { point.plotX = plotX;
24105 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { point.plotY = plotY;
24106  
24107 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { if (this.cross) {
24108 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { this.cross
24109 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { .addClass('highcharts-coloraxis-marker')
24110 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { .add(this.legendGroup);
24111  
24112  
24113 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { this.cross.attr({
24114 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { fill: this.crosshair.color
24115 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { });
24116  
24117  
24118 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { }
24119 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { }
24120 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { },
24121 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { getPlotLinePath: function(a, b, c, d, pos) {
24122 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { return isNumber(pos) ? // crosshairs only // #3969 pos can be 0 !!
24123 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { (this.horiz ? ['M', pos - 4, this.top - 6, 'L', pos + 4, this.top - 6, pos, this.top, 'Z'] : ['M', this.left, pos, 'L', this.left - 6, pos + 6, this.left - 6, pos - 6, 'Z']) :
24124 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { Axis.prototype.getPlotLinePath.call(this, a, b, c, d);
24125 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { },
24126  
24127 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { update: function(newOptions, redraw) {
24128 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { var chart = this.chart,
24129 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { legend = chart.legend;
24130  
24131 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { each(this.series, function(series) {
24132 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { series.isDirtyData = true; // Needed for Axis.update when choropleth colors change
24133 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { });
24134  
24135 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { // When updating data classes, destroy old items and make sure new ones are created (#3207)
24136 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { if (newOptions.dataClasses && legend.allItems) {
24137 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { each(legend.allItems, function(item) {
24138 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { if (item.isDataClass && item.legendGroup) {
24139 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { item.legendGroup.destroy();
24140 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { }
24141 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { });
24142 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { chart.isDirtyLegend = true;
24143 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { }
24144  
24145 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { // Keep the options structure updated for export. Unlike xAxis and yAxis, the colorAxis is
24146 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { // not an array. (#3207)
24147 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { chart.options[this.coll] = merge(this.userOptions, newOptions);
24148  
24149 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { Axis.prototype.update.call(this, newOptions, redraw);
24150 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { if (this.legendItem) {
24151 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { this.setLegendColor();
24152 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { legend.colorizeItem(this, true);
24153 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { }
24154 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { },
24155  
24156 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { /**
24157 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { * Extend basic axis remove by also removing the legend item.
24158 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { */
24159 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { remove: function() {
24160 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { if (this.legendItem) {
24161 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { this.chart.legend.destroyItem(this);
24162 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { }
24163 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { Axis.prototype.remove.call(this);
24164 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { },
24165  
24166 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { /**
24167 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { * Get the legend item symbols for data classes
24168 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { */
24169 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { getDataClassLegendSymbols: function() {
24170 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { var axis = this,
24171 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { chart = this.chart,
24172 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { legendItems = this.legendItems,
24173 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { legendOptions = chart.options.legend,
24174 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { valueDecimals = legendOptions.valueDecimals,
24175 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { valueSuffix = legendOptions.valueSuffix || '',
24176 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { name;
24177  
24178 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { if (!legendItems.length) {
24179 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { each(this.dataClasses, function(dataClass, i) {
24180 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { var vis = true,
24181 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { from = dataClass.from,
24182 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { to = dataClass.to;
24183  
24184 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { // Assemble the default name. This can be overridden by legend.options.labelFormatter
24185 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { name = '';
24186 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { if (from === undefined) {
24187 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) { name = '< ';
24188 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; } else if (to === undefined) {
24189 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; name = '> ';
24190 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24191 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (from !== undefined) {
24192 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; name += H.numberFormat(from, valueDecimals) + valueSuffix;
24193 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24194 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (from !== undefined && to !== undefined) {
24195 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; name += ' - ';
24196 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24197 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (to !== undefined) {
24198 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; name += H.numberFormat(to, valueDecimals) + valueSuffix;
24199 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24200 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Add a mock object to the legend items
24201 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; legendItems.push(extend({
24202 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; chart: chart,
24203 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; name: name,
24204 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; options: {},
24205 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; drawLegendSymbol: LegendSymbolMixin.drawRectangle,
24206 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; visible: true,
24207 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; setState: noop,
24208 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; isDataClass: true,
24209 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; setVisible: function() {
24210 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; vis = this.visible = !vis;
24211 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; each(axis.series, function(series) {
24212 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; each(series.points, function(point) {
24213 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (point.dataClass === i) {
24214 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; point.setVisible(vis);
24215 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24216 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; });
24217 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; });
24218  
24219 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; chart.legend.colorizeItem(this, vis);
24220 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24221 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }, dataClass));
24222 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; });
24223 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24224 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; return legendItems;
24225 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; },
24226 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; name: '' // Prevents 'undefined' in legend in IE8
24227 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; });
24228  
24229 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /**
24230 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * Handle animation of the color attributes directly
24231 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; */
24232 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; each(['fill', 'stroke'], function(prop) {
24233 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; H.Fx.prototype[prop + 'Setter'] = function() {
24234 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.elem.attr(
24235 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; prop,
24236 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; color(this.start).tweenTo(
24237 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; color(this.end),
24238 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.pos
24239 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; ),
24240 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; null,
24241 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; true
24242 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; );
24243 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; };
24244 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; });
24245  
24246 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /**
24247 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * Extend the chart getAxes method to also get the color axis
24248 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; */
24249 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; wrap(Chart.prototype, 'getAxes', function(proceed) {
24250  
24251 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; var options = this.options,
24252 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; colorAxisOptions = options.colorAxis;
24253  
24254 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; proceed.call(this);
24255  
24256 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.colorAxis = [];
24257 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (colorAxisOptions) {
24258 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; new ColorAxis(this, colorAxisOptions); // eslint-disable-line no-new
24259 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24260 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; });
24261  
24262  
24263 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /**
24264 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * Wrap the legend getAllItems method to add the color axis. This also removes the
24265 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * axis' own series to prevent them from showing up individually.
24266 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; */
24267 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; wrap(Legend.prototype, 'getAllItems', function(proceed) {
24268 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; var allItems = [],
24269 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; colorAxis = this.chart.colorAxis[0];
24270  
24271 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (colorAxis && colorAxis.options) {
24272 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (colorAxis.options.showInLegend) {
24273 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Data classes
24274 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (colorAxis.options.dataClasses) {
24275 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; allItems = allItems.concat(colorAxis.getDataClassLegendSymbols());
24276 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Gradient legend
24277 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; } else {
24278 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Add this axis on top
24279 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; allItems.push(colorAxis);
24280 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24281 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24282  
24283 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Don't add the color axis' series
24284 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; each(colorAxis.series, function(series) {
24285 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; series.options.showInLegend = false;
24286 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; });
24287 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24288  
24289 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; return allItems.concat(proceed.call(this));
24290 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; });
24291  
24292 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; wrap(Legend.prototype, 'colorizeItem', function(proceed, item, visible) {
24293 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; proceed.call(this, item, visible);
24294 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (visible && item.legendColor) {
24295 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; item.legendSymbol.attr({
24296 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; fill: item.legendColor
24297 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; });
24298 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24299 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; });
24300  
24301 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }(Highcharts));
24302 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; (function(H) {
24303 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /**
24304 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * (c) 2010-2017 Torstein Honsi
24305 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; *
24306 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * License: www.highcharts.com/license
24307 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; */
24308 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; var defined = H.defined,
24309 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; each = H.each,
24310 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; noop = H.noop,
24311 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; seriesTypes = H.seriesTypes;
24312  
24313 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /**
24314 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * Mixin for maps and heatmaps
24315 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; */
24316 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; H.colorPointMixin = {
24317 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /**
24318 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * Color points have a value option that determines whether or not it is a null point
24319 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; */
24320 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; isValid: function() {
24321 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; return this.value !== null;
24322 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; },
24323  
24324 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /**
24325 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * Set the visibility of a single point
24326 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; */
24327 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; setVisible: function(vis) {
24328 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; var point = this,
24329 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; method = vis ? 'show' : 'hide';
24330  
24331 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Show and hide associated elements
24332 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; each(['graphic', 'dataLabel'], function(key) {
24333 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (point[key]) {
24334 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; point[key][method]();
24335 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24336 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; });
24337 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; },
24338 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; setState: function(state) {
24339 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; H.Point.prototype.setState.call(this, state);
24340 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (this.graphic) {
24341 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.graphic.attr({
24342 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; zIndex: state === 'hover' ? 1 : 0
24343 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; });
24344 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24345 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24346 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; };
24347  
24348 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; H.colorSeriesMixin = {
24349 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; pointArrayMap: ['value'],
24350 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; axisTypes: ['xAxis', 'yAxis', 'colorAxis'],
24351 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; optionalAxis: 'colorAxis',
24352 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; trackerGroups: ['group', 'markerGroup', 'dataLabelsGroup'],
24353 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; getSymbol: noop,
24354 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; parallelArrays: ['x', 'y', 'value'],
24355 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; colorKey: 'value',
24356  
24357  
24358 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; pointAttribs: seriesTypes.column.prototype.pointAttribs,
24359  
24360  
24361 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /**
24362 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * In choropleth maps, the color is a result of the value, so this needs translation too
24363 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; */
24364 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; translateColors: function() {
24365 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; var series = this,
24366 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; nullColor = this.options.nullColor,
24367 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; colorAxis = this.colorAxis,
24368 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; colorKey = this.colorKey;
24369  
24370 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; each(this.data, function(point) {
24371 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; var value = point[colorKey],
24372 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; color;
24373  
24374 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; color = point.options.color ||
24375 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; (point.isNull ? nullColor : (colorAxis && value !== undefined) ? colorAxis.toColor(value, point) : point.color || series.color);
24376  
24377 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (color) {
24378 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; point.color = color;
24379 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24380 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; });
24381 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; },
24382  
24383 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /**
24384 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * Get the color attibutes to apply on the graphic
24385 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; */
24386 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; colorAttribs: function(point) {
24387 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; var ret = {};
24388 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (defined(point.color)) {
24389 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; ret[this.colorProp || 'fill'] = point.color;
24390 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24391 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; return ret;
24392 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24393 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; };
24394  
24395 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }(Highcharts));
24396 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; (function(H) {
24397 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /**
24398 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * (c) 2010-2017 Torstein Honsi
24399 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; *
24400 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * License: www.highcharts.com/license
24401 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; */
24402 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; var addEvent = H.addEvent,
24403 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; Chart = H.Chart,
24404 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; doc = H.doc,
24405 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; each = H.each,
24406 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; extend = H.extend,
24407 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; merge = H.merge,
24408 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; pick = H.pick,
24409 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; wrap = H.wrap;
24410  
24411 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; function stopEvent(e) {
24412 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (e) {
24413 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (e.preventDefault) {
24414 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; e.preventDefault();
24415 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24416 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (e.stopPropagation) {
24417 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; e.stopPropagation();
24418 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24419 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; e.cancelBubble = true;
24420 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24421 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24422  
24423 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /**
24424 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * The MapNavigation handles buttons for navigation in addition to mousewheel
24425 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * and doubleclick handlers for chart zooming.
24426 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * @param {Chart} chart The Chart instance.
24427 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; */
24428 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; function MapNavigation(chart) {
24429 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.init(chart);
24430 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24431  
24432 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /**
24433 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * Initiator function.
24434 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * @param {Chart} chart The Chart instance.
24435 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; */
24436 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; MapNavigation.prototype.init = function(chart) {
24437 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.chart = chart;
24438 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; chart.mapNavButtons = [];
24439 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; };
24440  
24441 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /**
24442 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * Update the map navigation with new options. Calling this is the same as
24443 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * calling `chart.update({ mapNavigation: {} })`.
24444 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * @param {Object} options New options for the map navigation.
24445 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; */
24446 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; MapNavigation.prototype.update = function(options) {
24447 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; var chart = this.chart,
24448 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; o = chart.options.mapNavigation,
24449 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; buttonOptions,
24450 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; attr,
24451 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; states,
24452 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; hoverStates,
24453 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; selectStates,
24454 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; outerHandler = function(e) {
24455 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.handler.call(chart, e);
24456 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; stopEvent(e); // Stop default click event (#4444)
24457 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; },
24458 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; mapNavButtons = chart.mapNavButtons;
24459  
24460 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Merge in new options in case of update, and register back to chart
24461 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // options.
24462 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (options) {
24463 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; o = chart.options.mapNavigation =
24464 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; merge(chart.options.mapNavigation, options);
24465 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24466  
24467 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Destroy buttons in case of dynamic update
24468 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; while (mapNavButtons.length) {
24469 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; mapNavButtons.pop().destroy();
24470 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24471  
24472 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (pick(o.enableButtons, o.enabled) && !chart.renderer.forExport) {
24473  
24474 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; H.objectEach(o.buttons, function(button, n) {
24475 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; buttonOptions = merge(o.buttonOptions, button);
24476  
24477  
24478 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Presentational
24479 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; attr = buttonOptions.theme;
24480 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; attr.style = merge(
24481 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; buttonOptions.theme.style,
24482 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; buttonOptions.style // #3203
24483 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; );
24484 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; states = attr.states;
24485 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; hoverStates = states && states.hover;
24486 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; selectStates = states && states.select;
24487  
24488  
24489 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; button = chart.renderer.button(
24490 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; buttonOptions.text,
24491 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; 0,
24492 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; 0,
24493 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; outerHandler,
24494 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; attr,
24495 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; hoverStates,
24496 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; selectStates,
24497 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; 0,
24498 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; n === 'zoomIn' ? 'topbutton' : 'bottombutton'
24499 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; )
24500 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; .addClass('highcharts-map-navigation')
24501 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; .attr({
24502 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; width: buttonOptions.width,
24503 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; height: buttonOptions.height,
24504 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; title: chart.options.lang[n],
24505 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; padding: buttonOptions.padding,
24506 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; zIndex: 5
24507 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; })
24508 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; .add();
24509 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; button.handler = buttonOptions.onclick;
24510 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; button.align(
24511 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; extend(buttonOptions, {
24512 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; width: button.width,
24513 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; height: 2 * button.height
24514 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }),
24515 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; null,
24516 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; buttonOptions.alignTo
24517 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; );
24518 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Stop double click event (#4444)
24519 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; addEvent(button.element, 'dblclick', stopEvent);
24520  
24521 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; mapNavButtons.push(button);
24522  
24523 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; });
24524 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24525  
24526 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.updateEvents(o);
24527 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; };
24528  
24529 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /**
24530 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * Update events, called internally from the update function. Add new event
24531 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * handlers, or unbinds events if disabled.
24532 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * @param {Object} options Options for map navigation.
24533 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; */
24534 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; MapNavigation.prototype.updateEvents = function(options) {
24535 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; var chart = this.chart;
24536  
24537 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Add the double click event
24538 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (
24539 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; pick(options.enableDoubleClickZoom, options.enabled) ||
24540 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; options.enableDoubleClickZoomTo
24541 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; ) {
24542 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.unbindDblClick = this.unbindDblClick || addEvent(
24543 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; chart.container,
24544 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; 'dblclick',
24545 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; function(e) {
24546 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; chart.pointer.onContainerDblClick(e);
24547 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24548 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; );
24549 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; } else if (this.unbindDblClick) {
24550 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Unbind and set unbinder to undefined
24551 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.unbindDblClick = this.unbindDblClick();
24552 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24553  
24554 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Add the mousewheel event
24555 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (pick(options.enableMouseWheelZoom, options.enabled)) {
24556 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.unbindMouseWheel = this.unbindMouseWheel || addEvent(
24557 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; chart.container,
24558 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; doc.onmousewheel === undefined ? 'DOMMouseScroll' : 'mousewheel',
24559 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; function(e) {
24560 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; chart.pointer.onContainerMouseWheel(e);
24561 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Issue #5011, returning false from non-jQuery event does
24562 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // not prevent default
24563 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; stopEvent(e);
24564 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; return false;
24565 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24566 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; );
24567 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; } else if (this.unbindMouseWheel) {
24568 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Unbind and set unbinder to undefined
24569 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.unbindMouseWheel = this.unbindMouseWheel();
24570 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24571  
24572 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; };
24573  
24574 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Add events to the Chart object itself
24575 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; extend(Chart.prototype, /** @lends Chart.prototype */ {
24576  
24577 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /**
24578 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * Fit an inner box to an outer. If the inner box overflows left or right, align it to the sides of the
24579 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * outer. If it overflows both sides, fit it within the outer. This is a pattern that occurs more places
24580 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * in Highcharts, perhaps it should be elevated to a common utility function.
24581 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; */
24582 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; fitToBox: function(inner, outer) {
24583 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; each([
24584 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; ['x', 'width'],
24585 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; ['y', 'height']
24586 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; ], function(dim) {
24587 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; var pos = dim[0],
24588 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; size = dim[1];
24589  
24590 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (inner[pos] + inner[size] > outer[pos] + outer[size]) { // right overflow
24591 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (inner[size] > outer[size]) { // the general size is greater, fit fully to outer
24592 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; inner[size] = outer[size];
24593 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; inner[pos] = outer[pos];
24594 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; } else { // align right
24595 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; inner[pos] = outer[pos] + outer[size] - inner[size];
24596 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24597 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24598 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (inner[size] > outer[size]) {
24599 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; inner[size] = outer[size];
24600 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24601 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (inner[pos] < outer[pos]) {
24602 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; inner[pos] = outer[pos];
24603 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24604 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; });
24605  
24606  
24607 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; return inner;
24608 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; },
24609  
24610 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /**
24611 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * Highmaps only. Zoom in or out of the map. See also {@link Point#zoomTo}.
24612 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * See {@link Chart#fromLatLonToPoint} for how to get the `centerX` and
24613 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * `centerY` parameters for a geographic location.
24614 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; *
24615 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * @param {Number} [howMuch]
24616 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * How much to zoom the map. Values less than 1 zooms in. 0.5 zooms
24617 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * in to half the current view. 2 zooms to twice the current view.
24618 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * If omitted, the zoom is reset.
24619 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * @param {Number} [centerX]
24620 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * The X axis position to center around if available space.
24621 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * @param {Number} [centerY]
24622 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * The Y axis position to center around if available space.
24623 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * @param {Number} [mouseX]
24624 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * Fix the zoom to this position if possible. This is used for
24625 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * example in mousewheel events, where the area under the mouse
24626 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * should be fixed as we zoom in.
24627 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * @param {Number} [mouseY]
24628 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * Fix the zoom to this position if possible.
24629 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; */
24630 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; mapZoom: function(howMuch, centerXArg, centerYArg, mouseX, mouseY) {
24631 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /*if (this.isMapZooming) {
24632 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.mapZoomQueue = arguments;
24633 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; return;
24634 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }*/
24635  
24636 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; var chart = this,
24637 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; xAxis = chart.xAxis[0],
24638 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; xRange = xAxis.max - xAxis.min,
24639 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; centerX = pick(centerXArg, xAxis.min + xRange / 2),
24640 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; newXRange = xRange * howMuch,
24641 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; yAxis = chart.yAxis[0],
24642 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; yRange = yAxis.max - yAxis.min,
24643 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; centerY = pick(centerYArg, yAxis.min + yRange / 2),
24644 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; newYRange = yRange * howMuch,
24645 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; fixToX = mouseX ? ((mouseX - xAxis.pos) / xAxis.len) : 0.5,
24646 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; fixToY = mouseY ? ((mouseY - yAxis.pos) / yAxis.len) : 0.5,
24647 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; newXMin = centerX - newXRange * fixToX,
24648 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; newYMin = centerY - newYRange * fixToY,
24649 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; newExt = chart.fitToBox({
24650 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; x: newXMin,
24651 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; y: newYMin,
24652 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; width: newXRange,
24653 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; height: newYRange
24654 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }, {
24655 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; x: xAxis.dataMin,
24656 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; y: yAxis.dataMin,
24657 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; width: xAxis.dataMax - xAxis.dataMin,
24658 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; height: yAxis.dataMax - yAxis.dataMin
24659 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }),
24660 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; zoomOut = newExt.x <= xAxis.dataMin &&
24661 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; newExt.width >= xAxis.dataMax - xAxis.dataMin &&
24662 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; newExt.y <= yAxis.dataMin &&
24663 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; newExt.height >= yAxis.dataMax - yAxis.dataMin;
24664  
24665 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // When mousewheel zooming, fix the point under the mouse
24666 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (mouseX) {
24667 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; xAxis.fixTo = [mouseX - xAxis.pos, centerXArg];
24668 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24669 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (mouseY) {
24670 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; yAxis.fixTo = [mouseY - yAxis.pos, centerYArg];
24671 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24672  
24673 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Zoom
24674 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (howMuch !== undefined && !zoomOut) {
24675 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; xAxis.setExtremes(newExt.x, newExt.x + newExt.width, false);
24676 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; yAxis.setExtremes(newExt.y, newExt.y + newExt.height, false);
24677  
24678 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Reset zoom
24679 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; } else {
24680 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; xAxis.setExtremes(undefined, undefined, false);
24681 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; yAxis.setExtremes(undefined, undefined, false);
24682 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24683  
24684 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Prevent zooming until this one is finished animating
24685 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /*chart.holdMapZoom = true;
24686 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; setTimeout(function () {
24687 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; chart.holdMapZoom = false;
24688 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }, 200);*/
24689 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /*delay = animation ? animation.duration || 500 : 0;
24690 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (delay) {
24691 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; chart.isMapZooming = true;
24692 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; setTimeout(function () {
24693 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; chart.isMapZooming = false;
24694 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (chart.mapZoomQueue) {
24695 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; chart.mapZoom.apply(chart, chart.mapZoomQueue);
24696 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24697 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; chart.mapZoomQueue = null;
24698 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }, delay);
24699 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }*/
24700  
24701 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; chart.redraw();
24702 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24703 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; });
24704  
24705 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /**
24706 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * Extend the Chart.render method to add zooming and panning
24707 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; */
24708 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; wrap(Chart.prototype, 'render', function(proceed) {
24709 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Render the plus and minus buttons. Doing this before the shapes makes getBBox much quicker, at least in Chrome.
24710 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.mapNavigation = new MapNavigation(this);
24711 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.mapNavigation.update();
24712  
24713 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; proceed.call(this);
24714 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; });
24715  
24716 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }(Highcharts));
24717 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; (function(H) {
24718 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /**
24719 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * (c) 2010-2017 Torstein Honsi
24720 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; *
24721 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * License: www.highcharts.com/license
24722 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; */
24723 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; var extend = H.extend,
24724 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; pick = H.pick,
24725 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; Pointer = H.Pointer,
24726 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; wrap = H.wrap;
24727  
24728 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Extend the Pointer
24729 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; extend(Pointer.prototype, {
24730  
24731 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /**
24732 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * The event handler for the doubleclick event
24733 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; */
24734 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; onContainerDblClick: function(e) {
24735 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; var chart = this.chart;
24736  
24737 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; e = this.normalize(e);
24738  
24739 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (chart.options.mapNavigation.enableDoubleClickZoomTo) {
24740 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (chart.pointer.inClass(e.target, 'highcharts-tracker') && chart.hoverPoint) {
24741 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; chart.hoverPoint.zoomTo();
24742 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24743 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; } else if (chart.isInsidePlot(e.chartX - chart.plotLeft, e.chartY - chart.plotTop)) {
24744 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; chart.mapZoom(
24745 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; 0.5,
24746 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; chart.xAxis[0].toValue(e.chartX),
24747 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; chart.yAxis[0].toValue(e.chartY),
24748 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; e.chartX,
24749 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; e.chartY
24750 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; );
24751 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24752 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; },
24753  
24754 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /**
24755 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * The event handler for the mouse scroll event
24756 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; */
24757 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; onContainerMouseWheel: function(e) {
24758 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; var chart = this.chart,
24759 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; delta;
24760  
24761 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; e = this.normalize(e);
24762  
24763 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Firefox uses e.detail, WebKit and IE uses wheelDelta
24764 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; delta = e.detail || -(e.wheelDelta / 120);
24765 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (chart.isInsidePlot(e.chartX - chart.plotLeft, e.chartY - chart.plotTop)) {
24766 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; chart.mapZoom(
24767 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; Math.pow(chart.options.mapNavigation.mouseWheelSensitivity, delta),
24768 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; chart.xAxis[0].toValue(e.chartX),
24769 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; chart.yAxis[0].toValue(e.chartY),
24770 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; e.chartX,
24771 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; e.chartY
24772 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; );
24773 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24774 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24775 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; });
24776  
24777 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // The pinchType is inferred from mapNavigation options.
24778 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; wrap(Pointer.prototype, 'zoomOption', function(proceed) {
24779  
24780  
24781 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; var mapNavigation = this.chart.options.mapNavigation;
24782  
24783 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Pinch status
24784 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (pick(mapNavigation.enableTouchZoom, mapNavigation.enabled)) {
24785 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.chart.options.chart.pinchType = 'xy';
24786 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24787  
24788 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; proceed.apply(this, [].slice.call(arguments, 1));
24789  
24790 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; });
24791  
24792 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Extend the pinchTranslate method to preserve fixed ratio when zooming
24793 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; wrap(Pointer.prototype, 'pinchTranslate', function(proceed, pinchDown, touches, transform, selectionMarker, clip, lastValidTouch) {
24794 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; var xBigger;
24795 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; proceed.call(this, pinchDown, touches, transform, selectionMarker, clip, lastValidTouch);
24796  
24797 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Keep ratio
24798 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (this.chart.options.chart.type === 'map' && this.hasZoom) {
24799 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; xBigger = transform.scaleX > transform.scaleY;
24800 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.pinchTranslateDirection(!xBigger,
24801 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; pinchDown,
24802 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; touches,
24803 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; transform,
24804 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; selectionMarker,
24805 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; clip,
24806 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; lastValidTouch,
24807 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; xBigger ? transform.scaleX : transform.scaleY
24808 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; );
24809 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24810 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; });
24811  
24812 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }(Highcharts));
24813 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; (function(H) {
24814 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /**
24815 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * (c) 2010-2017 Torstein Honsi
24816 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; *
24817 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * License: www.highcharts.com/license
24818 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; */
24819 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; var color = H.color,
24820 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; colorPointMixin = H.colorPointMixin,
24821 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; colorSeriesMixin = H.colorSeriesMixin,
24822 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; doc = H.doc,
24823 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; each = H.each,
24824 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; extend = H.extend,
24825 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; isNumber = H.isNumber,
24826 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; LegendSymbolMixin = H.LegendSymbolMixin,
24827 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; map = H.map,
24828 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; merge = H.merge,
24829 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; noop = H.noop,
24830 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; pick = H.pick,
24831 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; isArray = H.isArray,
24832 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; Point = H.Point,
24833 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; Series = H.Series,
24834 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; seriesType = H.seriesType,
24835 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; seriesTypes = H.seriesTypes,
24836 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; splat = H.splat;
24837  
24838 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // The vector-effect attribute is not supported in IE <= 11 (at least), so we need
24839 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // diffent logic (#3218)
24840 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; var supportsVectorEffect = doc.documentElement.style.vectorEffect !== undefined;
24841  
24842  
24843 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /**
24844 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * The MapAreaPoint object
24845 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; */
24846 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /**
24847 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * Add the map series type
24848 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; */
24849 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; seriesType('map', 'scatter', {
24850 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; allAreas: true,
24851  
24852 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; animation: false, // makes the complex shapes slow
24853 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; nullColor: '#f7f7f7',
24854 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; borderColor: '#cccccc',
24855 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; borderWidth: 1,
24856 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; marker: null,
24857 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; stickyTracking: false,
24858 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; joinBy: 'hc-key',
24859 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; dataLabels: {
24860 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; formatter: function() { // #2945
24861 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; return this.point.value;
24862 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; },
24863 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; inside: true, // for the color
24864 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; verticalAlign: 'middle',
24865 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; crop: false,
24866 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; overflow: false,
24867 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; padding: 0
24868 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; },
24869 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; turboThreshold: 0,
24870 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; tooltip: {
24871 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; followPointer: true,
24872 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; pointFormat: '{point.name}: {point.value}<br/>'
24873 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; },
24874 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; states: {
24875 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; normal: {
24876 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; animation: true
24877 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; },
24878 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; hover: {
24879 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; brightness: 0.2,
24880 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; halo: null
24881 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; },
24882 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; select: {
24883 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; color: '#cccccc'
24884 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24885 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24886  
24887 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Prototype members
24888 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }, merge(colorSeriesMixin, {
24889 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; type: 'map',
24890 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; supportsDrilldown: true,
24891 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; getExtremesFromAll: true,
24892 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; useMapGeometry: true, // get axis extremes from paths, not values
24893 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; forceDL: true,
24894 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; searchPoint: noop,
24895 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; directTouch: true, // When tooltip is not shared, this series (and derivatives) requires direct touch/hover. KD-tree does not apply.
24896 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; preserveAspectRatio: true, // X axis and Y axis must have same translation slope
24897 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; pointArrayMap: ['value'],
24898 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /**
24899 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * Get the bounding box of all paths in the map combined.
24900 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; */
24901 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; getBox: function(paths) {
24902 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; var MAX_VALUE = Number.MAX_VALUE,
24903 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; maxX = -MAX_VALUE,
24904 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; minX = MAX_VALUE,
24905 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; maxY = -MAX_VALUE,
24906 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; minY = MAX_VALUE,
24907 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; minRange = MAX_VALUE,
24908 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; xAxis = this.xAxis,
24909 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; yAxis = this.yAxis,
24910 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; hasBox;
24911  
24912 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Find the bounding box
24913 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; each(paths || [], function(point) {
24914  
24915 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (point.path) {
24916 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (typeof point.path === 'string') {
24917 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; point.path = H.splitPath(point.path);
24918 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24919  
24920 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; var path = point.path || [],
24921 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; i = path.length,
24922 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; even = false, // while loop reads from the end
24923 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; pointMaxX = -MAX_VALUE,
24924 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; pointMinX = MAX_VALUE,
24925 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; pointMaxY = -MAX_VALUE,
24926 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; pointMinY = MAX_VALUE,
24927 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; properties = point.properties;
24928  
24929 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // The first time a map point is used, analyze its box
24930 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (!point._foundBox) {
24931 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; while (i--) {
24932 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (isNumber(path[i])) {
24933 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (even) { // even = x
24934 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; pointMaxX = Math.max(pointMaxX, path[i]);
24935 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; pointMinX = Math.min(pointMinX, path[i]);
24936 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; } else { // odd = Y
24937 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; pointMaxY = Math.max(pointMaxY, path[i]);
24938 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; pointMinY = Math.min(pointMinY, path[i]);
24939 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24940 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; even = !even;
24941 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24942 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24943 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Cache point bounding box for use to position data labels, bubbles etc
24944 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; point._midX = pointMinX + (pointMaxX - pointMinX) *
24945 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; (point.middleX || (properties && properties['hc-middle-x']) || 0.5); // pick is slower and very marginally needed
24946 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; point._midY = pointMinY + (pointMaxY - pointMinY) *
24947 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; (point.middleY || (properties && properties['hc-middle-y']) || 0.5);
24948 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; point._maxX = pointMaxX;
24949 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; point._minX = pointMinX;
24950 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; point._maxY = pointMaxY;
24951 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; point._minY = pointMinY;
24952 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; point.labelrank = pick(point.labelrank, (pointMaxX - pointMinX) * (pointMaxY - pointMinY));
24953 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; point._foundBox = true;
24954 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24955  
24956 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; maxX = Math.max(maxX, point._maxX);
24957 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; minX = Math.min(minX, point._minX);
24958 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; maxY = Math.max(maxY, point._maxY);
24959 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; minY = Math.min(minY, point._minY);
24960 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; minRange = Math.min(point._maxX - point._minX, point._maxY - point._minY, minRange);
24961 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; hasBox = true;
24962 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24963 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; });
24964  
24965 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Set the box for the whole series
24966 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (hasBox) {
24967 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.minY = Math.min(minY, pick(this.minY, MAX_VALUE));
24968 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.maxY = Math.max(maxY, pick(this.maxY, -MAX_VALUE));
24969 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.minX = Math.min(minX, pick(this.minX, MAX_VALUE));
24970 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.maxX = Math.max(maxX, pick(this.maxX, -MAX_VALUE));
24971  
24972 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // If no minRange option is set, set the default minimum zooming range to 5 times the
24973 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // size of the smallest element
24974 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (xAxis && xAxis.options.minRange === undefined) {
24975 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; xAxis.minRange = Math.min(5 * minRange, (this.maxX - this.minX) / 5, xAxis.minRange || MAX_VALUE);
24976 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24977 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (yAxis && yAxis.options.minRange === undefined) {
24978 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; yAxis.minRange = Math.min(5 * minRange, (this.maxY - this.minY) / 5, yAxis.minRange || MAX_VALUE);
24979 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24980 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24981 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; },
24982  
24983 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; getExtremes: function() {
24984 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Get the actual value extremes for colors
24985 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; Series.prototype.getExtremes.call(this, this.valueData);
24986  
24987 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Recalculate box on updated data
24988 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (this.chart.hasRendered && this.isDirtyData) {
24989 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.getBox(this.options.data);
24990 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
24991  
24992 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.valueMin = this.dataMin;
24993 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.valueMax = this.dataMax;
24994  
24995 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Extremes for the mock Y axis
24996 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.dataMin = this.minY;
24997 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.dataMax = this.maxY;
24998 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; },
24999  
25000 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /**
25001 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * Translate the path so that it automatically fits into the plot area box
25002 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * @param {Object} path
25003 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; */
25004 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; translatePath: function(path) {
25005  
25006 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; var series = this,
25007 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; even = false, // while loop reads from the end
25008 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; xAxis = series.xAxis,
25009 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; yAxis = series.yAxis,
25010 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; xMin = xAxis.min,
25011 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; xTransA = xAxis.transA,
25012 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; xMinPixelPadding = xAxis.minPixelPadding,
25013 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; yMin = yAxis.min,
25014 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; yTransA = yAxis.transA,
25015 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; yMinPixelPadding = yAxis.minPixelPadding,
25016 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; i,
25017 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; ret = []; // Preserve the original
25018  
25019 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Do the translation
25020 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (path) {
25021 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; i = path.length;
25022 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; while (i--) {
25023 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (isNumber(path[i])) {
25024 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; ret[i] = even ?
25025 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; (path[i] - xMin) * xTransA + xMinPixelPadding :
25026 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; (path[i] - yMin) * yTransA + yMinPixelPadding;
25027 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; even = !even;
25028 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; } else {
25029 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; ret[i] = path[i];
25030 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
25031 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
25032 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
25033  
25034 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; return ret;
25035 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; },
25036  
25037 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /**
25038 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * Extend setData to join in mapData. If the allAreas option is true, all areas
25039 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * from the mapData are used, and those that don't correspond to a data value
25040 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * are given null values.
25041 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; */
25042 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; setData: function(data, redraw, animation, updatePoints) {
25043 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; var options = this.options,
25044 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; chartOptions = this.chart.options.chart,
25045 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; globalMapData = chartOptions && chartOptions.map,
25046 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; mapData = options.mapData,
25047 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; joinBy = options.joinBy,
25048 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; joinByNull = joinBy === null,
25049 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; pointArrayMap = options.keys || this.pointArrayMap,
25050 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; dataUsed = [],
25051 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; mapMap = {},
25052 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; mapPoint,
25053 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; mapTransforms = this.chart.mapTransforms,
25054 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; props,
25055 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; i;
25056  
25057 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Collect mapData from chart options if not defined on series
25058 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (!mapData && globalMapData) {
25059 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; mapData = typeof globalMapData === 'string' ? H.maps[globalMapData] : globalMapData;
25060 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
25061  
25062 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (joinByNull) {
25063 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; joinBy = '_i';
25064 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
25065 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; joinBy = this.joinBy = splat(joinBy);
25066 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (!joinBy[1]) {
25067 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; joinBy[1] = joinBy[0];
25068 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
25069  
25070 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Pick up numeric values, add index
25071 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Convert Array point definitions to objects using pointArrayMap
25072 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (data) {
25073 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; each(data, function(val, i) {
25074 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; var ix = 0;
25075 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (isNumber(val)) {
25076 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; data[i] = {
25077 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; value: val
25078 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; };
25079 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; } else if (isArray(val)) {
25080 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; data[i] = {};
25081 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Automatically copy first item to hc-key if there is an extra leading string
25082 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (!options.keys && val.length > pointArrayMap.length && typeof val[0] === 'string') {
25083 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; data[i]['hc-key'] = val[0];
25084 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; ++ix;
25085 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
25086 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Run through pointArrayMap and what's left of the point data array in parallel, copying over the values
25087 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; for (var j = 0; j < pointArrayMap.length; ++j, ++ix) {
25088 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (pointArrayMap[j]) {
25089 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; data[i][pointArrayMap[j]] = val[ix];
25090 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
25091 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
25092 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
25093 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (joinByNull) {
25094 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; data[i]._i = i;
25095 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
25096 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; });
25097 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
25098  
25099 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.getBox(data);
25100  
25101 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Pick up transform definitions for chart
25102 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.chart.mapTransforms = mapTransforms = chartOptions && chartOptions.mapTransforms || mapData && mapData['hc-transform'] || mapTransforms;
25103  
25104 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Cache cos/sin of transform rotation angle
25105 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (mapTransforms) {
25106 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; H.objectEach(mapTransforms, function(transform) {
25107 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (transform.rotation) {
25108 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; transform.cosAngle = Math.cos(transform.rotation);
25109 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; transform.sinAngle = Math.sin(transform.rotation);
25110 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
25111 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; });
25112 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
25113  
25114 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (mapData) {
25115 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (mapData.type === 'FeatureCollection') {
25116 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.mapTitle = mapData.title;
25117 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; mapData = H.geojson(mapData, this.type, this);
25118 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
25119  
25120 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.mapData = mapData;
25121 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.mapMap = {};
25122  
25123 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; for (i = 0; i < mapData.length; i++) {
25124 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; mapPoint = mapData[i];
25125 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; props = mapPoint.properties;
25126  
25127 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; mapPoint._i = i;
25128 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Copy the property over to root for faster access
25129 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (joinBy[0] && props && props[joinBy[0]]) {
25130 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; mapPoint[joinBy[0]] = props[joinBy[0]];
25131 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
25132 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; mapMap[mapPoint[joinBy[0]]] = mapPoint;
25133 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
25134 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.mapMap = mapMap;
25135  
25136 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Registered the point codes that actually hold data
25137 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (data && joinBy[1]) {
25138 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; each(data, function(point) {
25139 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (mapMap[point[joinBy[1]]]) {
25140 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; dataUsed.push(mapMap[point[joinBy[1]]]);
25141 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
25142 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; });
25143 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
25144  
25145 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (options.allAreas) {
25146 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.getBox(mapData);
25147 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; data = data || [];
25148  
25149 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Registered the point codes that actually hold data
25150 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (joinBy[1]) {
25151 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; each(data, function(point) {
25152 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; dataUsed.push(point[joinBy[1]]);
25153 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; });
25154 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
25155  
25156 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Add those map points that don't correspond to data, which will be drawn as null points
25157 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; dataUsed = '|' + map(dataUsed, function(point) {
25158 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; return point && point[joinBy[0]];
25159 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }).join('|') + '|'; // String search is faster than array.indexOf
25160  
25161 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; each(mapData, function(mapPoint) {
25162 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (!joinBy[0] || dataUsed.indexOf('|' + mapPoint[joinBy[0]] + '|') === -1) {
25163 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; data.push(merge(mapPoint, {
25164 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; value: null
25165 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }));
25166 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; updatePoints = false; // #5050 - adding all areas causes the update optimization of setData to kick in, even though the point order has changed
25167 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
25168 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; });
25169 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; } else {
25170 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.getBox(dataUsed); // Issue #4784
25171 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
25172 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
25173 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; Series.prototype.setData.call(this, data, redraw, animation, updatePoints);
25174 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; },
25175  
25176  
25177 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /**
25178 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * No graph for the map series
25179 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; */
25180 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; drawGraph: noop,
25181  
25182 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /**
25183 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * We need the points' bounding boxes in order to draw the data labels, so
25184 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * we skip it now and call it from drawPoints instead.
25185 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; */
25186 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; drawDataLabels: noop,
25187  
25188 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /**
25189 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * Allow a quick redraw by just translating the area group. Used for zooming and panning
25190 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * in capable browsers.
25191 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; */
25192 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; doFullTranslate: function() {
25193 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; return this.isDirtyData || this.chart.isResizing || this.chart.renderer.isVML || !this.baseTrans;
25194 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; },
25195  
25196 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /**
25197 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * Add the path option for data points. Find the max value for color calculation.
25198 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; */
25199 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; translate: function() {
25200 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; var series = this,
25201 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; xAxis = series.xAxis,
25202 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; yAxis = series.yAxis,
25203 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; doFullTranslate = series.doFullTranslate();
25204  
25205 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; series.generatePoints();
25206  
25207 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; each(series.data, function(point) {
25208  
25209 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Record the middle point (loosely based on centroid), determined
25210 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // by the middleX and middleY options.
25211 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; point.plotX = xAxis.toPixels(point._midX, true);
25212 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; point.plotY = yAxis.toPixels(point._midY, true);
25213  
25214 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (doFullTranslate) {
25215  
25216 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; point.shapeType = 'path';
25217 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; point.shapeArgs = {
25218 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; d: series.translatePath(point.path)
25219 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; };
25220 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
25221 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; });
25222  
25223 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; series.translateColors();
25224 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; },
25225  
25226 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /**
25227 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * Get presentational attributes. In the maps series this runs in both
25228 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * styled and non-styled mode, because colors hold data when a colorAxis
25229 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * is used.
25230 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; */
25231 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; pointAttribs: function(point, state) {
25232 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; var attr;
25233  
25234 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; attr = seriesTypes.column.prototype.pointAttribs.call(
25235 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this, point, state
25236 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; );
25237  
25238  
25239 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Prevent flickering whan called from setState
25240 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (point.isFading) {
25241 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; delete attr.fill;
25242 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
25243  
25244 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // If vector-effect is not supported, we set the stroke-width on the group element
25245 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // and let all point graphics inherit. That way we don't have to iterate over all
25246 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // points to update the stroke-width on zooming. TODO: Check unstyled
25247 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (supportsVectorEffect) {
25248 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; attr['vector-effect'] = 'non-scaling-stroke';
25249 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; } else {
25250 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; attr['stroke-width'] = 'inherit';
25251 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
25252  
25253 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; return attr;
25254 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; },
25255  
25256 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; /**
25257 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * Use the drawPoints method of column, that is able to handle simple shapeArgs.
25258 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; * Extend it by assigning the tooltip position.
25259 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; */
25260 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; drawPoints: function() {
25261 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; var series = this,
25262 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; xAxis = series.xAxis,
25263 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; yAxis = series.yAxis,
25264 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; group = series.group,
25265 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; chart = series.chart,
25266 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; renderer = chart.renderer,
25267 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; scaleX,
25268 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; scaleY,
25269 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; translateX,
25270 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; translateY,
25271 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; baseTrans = this.baseTrans,
25272 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; transformGroup,
25273 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; startTranslateX,
25274 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; startTranslateY,
25275 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; startScaleX,
25276 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; startScaleY;
25277  
25278 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Set a group that handles transform during zooming and panning in order to preserve clipping
25279 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // on series.group
25280 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (!series.transformGroup) {
25281 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; series.transformGroup = renderer.g()
25282 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; .attr({
25283 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; scaleX: 1,
25284 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; scaleY: 1
25285 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; })
25286 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; .add(group);
25287 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; series.transformGroup.survive = true;
25288 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
25289  
25290 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Draw the shapes again
25291 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (series.doFullTranslate()) {
25292  
25293 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Individual point actions. TODO: Check unstyled.
25294  
25295 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (chart.hasRendered) {
25296 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; each(series.points, function(point) {
25297  
25298 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Restore state color on update/redraw (#3529)
25299 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (point.shapeArgs) {
25300 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; point.shapeArgs.fill = series.pointAttribs(point, point.state).fill;
25301 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
25302 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; });
25303 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
25304  
25305  
25306 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Draw them in transformGroup
25307 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; series.group = series.transformGroup;
25308 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; seriesTypes.column.prototype.drawPoints.apply(series);
25309 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; series.group = group; // Reset
25310  
25311 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Add class names
25312 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; each(series.points, function(point) {
25313 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (point.graphic) {
25314 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (point.name) {
25315 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; point.graphic.addClass('highcharts-name-' + point.name.replace(/ /g, '-').toLowerCase());
25316 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
25317 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (point.properties && point.properties['hc-key']) {
25318 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; point.graphic.addClass('highcharts-key-' + point.properties['hc-key'].toLowerCase());
25319 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
25320  
25321  
25322 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; }
25323 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; });
25324  
25325 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Set the base for later scale-zooming. The originX and originY properties are the
25326 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // axis values in the plot area's upper left corner.
25327 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.baseTrans = {
25328 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; originX: xAxis.min - xAxis.minPixelPadding / xAxis.transA,
25329 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; originY: yAxis.min - yAxis.minPixelPadding / yAxis.transA + (yAxis.reversed ? 0 : yAxis.len / yAxis.transA),
25330 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; transAX: xAxis.transA,
25331 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; transAY: yAxis.transA
25332 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; };
25333  
25334 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Reset transformation in case we're doing a full translate (#3789)
25335 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; this.transformGroup.animate({
25336 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; translateX: 0,
25337 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; translateY: 0,
25338 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; scaleX: 1,
25339 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; scaleY: 1
25340 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; });
25341  
25342 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Just update the scale and transform for better performance
25343 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; } else {
25344 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; scaleX = xAxis.transA / baseTrans.transAX;
25345 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; scaleY = yAxis.transA / baseTrans.transAY;
25346 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; translateX = xAxis.toPixels(baseTrans.originX, true);
25347 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; translateY = yAxis.toPixels(baseTrans.originY, true);
25348  
25349 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; // Handle rounding errors in normal view (#3789)
25350 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< '; if (scaleX > 0.99 && scaleX < 1.01 && scaleY > 0.99 && scaleY < 1.01) {
25351 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { scaleX = 1;
25352 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { scaleY = 1;
25353 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { translateX = Math.round(translateX);
25354 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { translateY = Math.round(translateY);
25355 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25356  
25357 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Animate or move to the new zoom level. In order to prevent
25358 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // flickering as the different transform components are set out of
25359 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // sync (#5991), we run a fake animator attribute and set scale and
25360 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // translation synchronously in the same step.
25361 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // A possible improvement to the API would be to handle this in the
25362 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // renderer or animation engine itself, to ensure that when we are
25363 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // animating multiple properties, we make sure that each step for
25364 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // each property is performed in the same step. Also, for symbols
25365 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // and for transform properties, it should induce a single
25366 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // updateTransform and symbolAttr call.
25367 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { transformGroup = this.transformGroup;
25368 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (chart.renderer.globalAnimation) {
25369 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { startTranslateX = transformGroup.attr('translateX');
25370 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { startTranslateY = transformGroup.attr('translateY');
25371 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { startScaleX = transformGroup.attr('scaleX');
25372 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { startScaleY = transformGroup.attr('scaleY');
25373 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { transformGroup
25374 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { .attr({
25375 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animator: 0
25376 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { })
25377 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { .animate({
25378 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animator: 1
25379 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }, {
25380 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { step: function(now, fx) {
25381 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { transformGroup.attr({
25382 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { translateX: startTranslateX +
25383 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { (translateX - startTranslateX) * fx.pos,
25384 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { translateY: startTranslateY +
25385 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { (translateY - startTranslateY) * fx.pos,
25386 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { scaleX: startScaleX +
25387 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { (scaleX - startScaleX) * fx.pos,
25388 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { scaleY: startScaleY +
25389 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { (scaleY - startScaleY) * fx.pos
25390 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
25391  
25392 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25393 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
25394  
25395 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // When dragging, animation is off.
25396 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { } else {
25397 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { transformGroup.attr({
25398 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { translateX: translateX,
25399 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { translateY: translateY,
25400 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { scaleX: scaleX,
25401 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { scaleY: scaleY
25402 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
25403 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25404  
25405 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25406  
25407 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Set the stroke-width directly on the group element so the children inherit it. We need to use
25408 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // setAttribute directly, because the stroke-widthSetter method expects a stroke color also to be
25409 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // set.
25410 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (!supportsVectorEffect) {
25411 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { series.group.element.setAttribute(
25412 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { 'stroke-width',
25413 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { series.options[
25414 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { (series.pointAttrToOptions && series.pointAttrToOptions['stroke-width']) || 'borderWidth'
25415 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { ] / (scaleX || 1)
25416 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { );
25417 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25418  
25419 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { this.drawMapDataLabels();
25420  
25421  
25422 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
25423  
25424 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
25425 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Draw the data labels. Special for maps is the time that the data labels are drawn (after points),
25426 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * and the clipping of the dataLabelsGroup.
25427 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
25428 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { drawMapDataLabels: function() {
25429  
25430 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Series.prototype.drawDataLabels.call(this);
25431 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (this.dataLabelsGroup) {
25432 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { this.dataLabelsGroup.clip(this.chart.clipRect);
25433 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25434 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
25435  
25436 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
25437 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Override render to throw in an async call in IE8. Otherwise it chokes on the US counties demo.
25438 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
25439 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { render: function() {
25440 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var series = this,
25441 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { render = Series.prototype.render;
25442  
25443 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Give IE8 some time to breathe.
25444 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (series.chart.renderer.isVML && series.data.length > 3000) {
25445 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { setTimeout(function() {
25446 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { render.call(series);
25447 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
25448 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { } else {
25449 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { render.call(series);
25450 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25451 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
25452  
25453 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
25454 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * The initial animation for the map series. By default, animation is disabled.
25455 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Animation of map shapes is not at all supported in VML browsers.
25456 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
25457 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animate: function(init) {
25458 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var chart = this.chart,
25459 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animation = this.options.animation,
25460 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { group = this.group,
25461 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { xAxis = this.xAxis,
25462 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { yAxis = this.yAxis,
25463 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { left = xAxis.pos,
25464 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { top = yAxis.pos;
25465  
25466 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (chart.renderer.isSVG) {
25467  
25468 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (animation === true) {
25469 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animation = {
25470 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { duration: 1000
25471 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
25472 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25473  
25474 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Initialize the animation
25475 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (init) {
25476  
25477 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Scale down the group and place it in the center
25478 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { group.attr({
25479 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { translateX: left + xAxis.len / 2,
25480 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { translateY: top + yAxis.len / 2,
25481 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { scaleX: 0.001, // #1499
25482 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { scaleY: 0.001
25483 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
25484  
25485 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Run the animation
25486 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { } else {
25487 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { group.animate({
25488 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { translateX: left,
25489 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { translateY: top,
25490 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { scaleX: 1,
25491 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { scaleY: 1
25492 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }, animation);
25493  
25494 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Delete this function to allow it only once
25495 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { this.animate = null;
25496 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25497 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25498 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
25499  
25500 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
25501 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Animate in the new series from the clicked point in the old series.
25502 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Depends on the drilldown.js module
25503 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
25504 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animateDrilldown: function(init) {
25505 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var toBox = this.chart.plotBox,
25506 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { level = this.chart.drilldownLevels[this.chart.drilldownLevels.length - 1],
25507 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { fromBox = level.bBox,
25508 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animationOptions = this.chart.options.drilldown.animation,
25509 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { scale;
25510  
25511 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (!init) {
25512  
25513 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { scale = Math.min(fromBox.width / toBox.width, fromBox.height / toBox.height);
25514 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { level.shapeArgs = {
25515 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { scaleX: scale,
25516 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { scaleY: scale,
25517 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { translateX: fromBox.x,
25518 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { translateY: fromBox.y
25519 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
25520  
25521 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { each(this.points, function(point) {
25522 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (point.graphic) {
25523 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point.graphic
25524 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { .attr(level.shapeArgs)
25525 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { .animate({
25526 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { scaleX: 1,
25527 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { scaleY: 1,
25528 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { translateX: 0,
25529 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { translateY: 0
25530 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }, animationOptions);
25531 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25532 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
25533  
25534 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { this.animate = null;
25535 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25536  
25537 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
25538  
25539 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { drawLegendSymbol: LegendSymbolMixin.drawRectangle,
25540  
25541 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
25542 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * When drilling up, pull out the individual point graphics from the lower series
25543 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * and animate them into the origin point in the upper series.
25544 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
25545 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animateDrillupFrom: function(level) {
25546 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesTypes.column.prototype.animateDrillupFrom.call(this, level);
25547 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
25548  
25549  
25550 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
25551 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * When drilling up, keep the upper series invisible until the lower series has
25552 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * moved into place
25553 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
25554 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animateDrillupTo: function(init) {
25555 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesTypes.column.prototype.animateDrillupTo.call(this, init);
25556 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25557  
25558 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Point class
25559 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }), extend({
25560 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
25561 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Extend the Point object to split paths
25562 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
25563 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { applyOptions: function(options, x) {
25564  
25565 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var point = Point.prototype.applyOptions.call(this, options, x),
25566 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { series = this.series,
25567 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { joinBy = series.joinBy,
25568 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { mapPoint;
25569  
25570 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (series.mapData) {
25571 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { mapPoint = point[joinBy[1]] !== undefined && series.mapMap[point[joinBy[1]]];
25572 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (mapPoint) {
25573 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // This applies only to bubbles
25574 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (series.xyFromShape) {
25575 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point.x = mapPoint._midX;
25576 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point.y = mapPoint._midY;
25577 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25578 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { extend(point, mapPoint); // copy over properties
25579 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { } else {
25580 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point.value = point.value || null;
25581 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25582 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25583  
25584 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return point;
25585 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
25586  
25587 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
25588 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Stop the fade-out
25589 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
25590 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { onMouseOver: function(e) {
25591 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { clearTimeout(this.colorInterval);
25592 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (this.value !== null || this.series.options.nullInteraction) {
25593 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Point.prototype.onMouseOver.call(this, e);
25594 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { } else { //#3401 Tooltip doesn't hide when hovering over null points
25595 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { this.series.onMouseOut(e);
25596 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25597 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
25598  
25599 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Todo: check unstyled
25600 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
25601 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Custom animation for tweening out the colors. Animation reduces blinking when hovering
25602 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * over islands and coast lines. We run a custom implementation of animation becuase we
25603 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * need to be able to run this independently from other animations like zoom redraw. Also,
25604 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * adding color animation to the adapters would introduce almost the same amount of code.
25605 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
25606 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { onMouseOut: function() {
25607 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var point = this,
25608 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { start = +new Date(),
25609 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { normalColor = color(this.series.pointAttribs(point).fill),
25610 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { hoverColor = color(this.series.pointAttribs(point, 'hover').fill),
25611 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animation = point.series.options.states.normal.animation,
25612 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { duration = animation && (animation.duration || 500);
25613  
25614 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (duration && normalColor.rgba.length === 4 && hoverColor.rgba.length === 4 && point.state !== 'select') {
25615 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { clearTimeout(point.colorInterval);
25616 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point.colorInterval = setInterval(function() {
25617 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var pos = (new Date() - start) / duration,
25618 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { graphic = point.graphic;
25619 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (pos > 1) {
25620 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pos = 1;
25621 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25622 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (graphic) {
25623 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { graphic.attr(
25624 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { 'fill',
25625 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { hoverColor.tweenTo(normalColor, pos)
25626 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { );
25627 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25628 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (pos >= 1) {
25629 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { clearTimeout(point.colorInterval);
25630 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25631 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }, 13);
25632 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point.isFading = true;
25633 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25634 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Point.prototype.onMouseOut.call(point);
25635 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point.isFading = null;
25636 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
25637  
25638  
25639 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
25640 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Highmaps only. Zoom in on the point using the global animation.
25641 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
25642 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @function #zoomTo
25643 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @memberOf Point
25644 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @sample maps/members/point-zoomto/
25645 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Zoom to points from butons
25646 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
25647 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zoomTo: function() {
25648 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var point = this,
25649 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { series = point.series;
25650  
25651 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { series.xAxis.setExtremes(
25652 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point._minX,
25653 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point._maxX,
25654 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { false
25655 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { );
25656 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { series.yAxis.setExtremes(
25657 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point._minY,
25658 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point._maxY,
25659 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { false
25660 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { );
25661 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { series.chart.redraw();
25662 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25663 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }, colorPointMixin));
25664  
25665 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }(Highcharts));
25666 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { (function(H) {
25667 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
25668 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * (c) 2010-2017 Torstein Honsi
25669 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
25670 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * License: www.highcharts.com/license
25671 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
25672 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var seriesType = H.seriesType,
25673 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesTypes = H.seriesTypes;
25674  
25675 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // The mapline series type
25676 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesType('mapline', 'map', {
25677  
25678 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { lineWidth: 1,
25679 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { fillColor: 'none'
25680  
25681 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }, {
25682 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { type: 'mapline',
25683 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { colorProp: 'stroke',
25684  
25685 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pointAttrToOptions: {
25686 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { 'stroke': 'color',
25687 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { 'stroke-width': 'lineWidth'
25688 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
25689 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
25690 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Get presentational attributes
25691 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
25692 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pointAttribs: function(point, state) {
25693 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var attr = seriesTypes.map.prototype.pointAttribs.call(this, point, state);
25694  
25695 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // The difference from a map series is that the stroke takes the point color
25696 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { attr.fill = this.options.fillColor;
25697  
25698 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return attr;
25699 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
25700  
25701 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { drawLegendSymbol: seriesTypes.line.prototype.drawLegendSymbol
25702 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
25703  
25704 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }(Highcharts));
25705 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { (function(H) {
25706 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
25707 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * (c) 2010-2017 Torstein Honsi
25708 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
25709 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * License: www.highcharts.com/license
25710 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
25711 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var merge = H.merge,
25712 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Point = H.Point,
25713 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesType = H.seriesType;
25714  
25715 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // The mappoint series type
25716 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesType('mappoint', 'scatter', {
25717 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { dataLabels: {
25718 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { enabled: true,
25719 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { formatter: function() { // #2945
25720 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return this.point.name;
25721 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
25722 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { crop: false,
25723 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { defer: false,
25724 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { overflow: false,
25725 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { style: {
25726 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { color: '#000000'
25727 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25728 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25729  
25730 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Prototype members
25731 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }, {
25732 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { type: 'mappoint',
25733 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { forceDL: true
25734  
25735 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Point class
25736 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }, {
25737 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { applyOptions: function(options, x) {
25738 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var mergedOptions = options.lat !== undefined && options.lon !== undefined ? merge(options, this.series.chart.fromLatLonToPoint(options)) : options;
25739 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return Point.prototype.applyOptions.call(this, mergedOptions, x);
25740 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25741 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
25742  
25743 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }(Highcharts));
25744 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { (function(H) {
25745 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
25746 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * (c) 2010-2017 Torstein Honsi
25747 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
25748 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * License: www.highcharts.com/license
25749 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
25750 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var arrayMax = H.arrayMax,
25751 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { arrayMin = H.arrayMin,
25752 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Axis = H.Axis,
25753 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { color = H.color,
25754 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { each = H.each,
25755 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { isNumber = H.isNumber,
25756 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { noop = H.noop,
25757 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pick = H.pick,
25758 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pInt = H.pInt,
25759 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Point = H.Point,
25760 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Series = H.Series,
25761 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesType = H.seriesType,
25762 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesTypes = H.seriesTypes;
25763  
25764 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /* ****************************************************************************
25765 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Start Bubble series code *
25766 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *****************************************************************************/
25767  
25768 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesType('bubble', 'scatter', {
25769 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { dataLabels: {
25770 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { formatter: function() { // #2945
25771 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return this.point.z;
25772 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
25773 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { inside: true,
25774 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { verticalAlign: 'middle'
25775 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
25776 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // displayNegative: true,
25777 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { marker: {
25778  
25779 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // fillOpacity: 0.5,
25780 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { lineColor: null, // inherit from series.color
25781 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { lineWidth: 1,
25782  
25783 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Avoid offset in Point.setState
25784 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { radius: null,
25785 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { states: {
25786 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { hover: {
25787 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { radiusPlus: 0
25788 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25789 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
25790 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { symbol: 'circle'
25791 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
25792 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { minSize: 8,
25793 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { maxSize: '20%',
25794 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // negativeColor: null,
25795 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // sizeBy: 'area'
25796 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { softThreshold: false,
25797 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { states: {
25798 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { hover: {
25799 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { halo: {
25800 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { size: 5
25801 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25802 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25803 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
25804 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { tooltip: {
25805 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pointFormat: '({point.x}, {point.y}), Size: {point.z}'
25806 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
25807 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { turboThreshold: 0,
25808 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zThreshold: 0,
25809 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zoneAxis: 'z'
25810  
25811 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Prototype members
25812 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }, {
25813 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pointArrayMap: ['y', 'z'],
25814 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { parallelArrays: ['x', 'y', 'z'],
25815 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { trackerGroups: ['group', 'dataLabelsGroup'],
25816 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { specialGroup: 'group', // To allow clipping (#6296)
25817 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { bubblePadding: true,
25818 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zoneAxis: 'z',
25819 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { directTouch: true,
25820  
25821  
25822 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pointAttribs: function(point, state) {
25823 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var markerOptions = this.options.marker,
25824 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { fillOpacity = pick(markerOptions.fillOpacity, 0.5),
25825 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { attr = Series.prototype.pointAttribs.call(this, point, state);
25826  
25827 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (fillOpacity !== 1) {
25828 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { attr.fill = color(attr.fill).setOpacity(fillOpacity).get('rgba');
25829 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25830  
25831 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return attr;
25832 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
25833  
25834  
25835 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
25836 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Get the radius for each point based on the minSize, maxSize and each point's Z value. This
25837 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * must be done prior to Series.translate because the axis needs to add padding in
25838 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * accordance with the point sizes.
25839 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
25840 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { getRadii: function(zMin, zMax, minSize, maxSize) {
25841 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var len,
25842 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { i,
25843 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pos,
25844 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zData = this.zData,
25845 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { radii = [],
25846 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { options = this.options,
25847 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { sizeByArea = options.sizeBy !== 'width',
25848 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zThreshold = options.zThreshold,
25849 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zRange = zMax - zMin,
25850 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { value,
25851 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { radius;
25852  
25853 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Set the shape type and arguments to be picked up in drawPoints
25854 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { for (i = 0, len = zData.length; i < len; i++) {
25855  
25856 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { value = zData[i];
25857  
25858 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // When sizing by threshold, the absolute value of z determines the size
25859 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // of the bubble.
25860 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (options.sizeByAbsoluteValue && value !== null) {
25861 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { value = Math.abs(value - zThreshold);
25862 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zMax = Math.max(zMax - zThreshold, Math.abs(zMin - zThreshold));
25863 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zMin = 0;
25864 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25865  
25866 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (value === null) {
25867 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { radius = null;
25868 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Issue #4419 - if value is less than zMin, push a radius that's always smaller than the minimum size
25869 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { } else if (value < zMin) {
25870 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { radius = minSize / 2 - 1;
25871 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { } else {
25872 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Relative size, a number between 0 and 1
25873 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pos = zRange > 0 ? (value - zMin) / zRange : 0.5;
25874  
25875 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (sizeByArea && pos >= 0) {
25876 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pos = Math.sqrt(pos);
25877 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25878 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { radius = Math.ceil(minSize + pos * (maxSize - minSize)) / 2;
25879 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25880 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { radii.push(radius);
25881 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25882 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { this.radii = radii;
25883 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
25884  
25885 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
25886 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Perform animation on the bubbles
25887 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
25888 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animate: function(init) {
25889 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var animation = this.options.animation;
25890  
25891 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (!init) { // run the animation
25892 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { each(this.points, function(point) {
25893 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var graphic = point.graphic,
25894 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animationTarget;
25895  
25896 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (graphic && graphic.width) { // URL symbols don't have width
25897 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animationTarget = {
25898 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x: graphic.x,
25899 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { y: graphic.y,
25900 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { width: graphic.width,
25901 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { height: graphic.height
25902 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
25903  
25904 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Start values
25905 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { graphic.attr({
25906 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x: point.plotX,
25907 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { y: point.plotY,
25908 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { width: 1,
25909 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { height: 1
25910 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
25911  
25912 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Run animation
25913 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { graphic.animate(animationTarget, animation);
25914 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25915 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
25916  
25917 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // delete this function to allow it only once
25918 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { this.animate = null;
25919 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25920 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
25921  
25922 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
25923 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Extend the base translate method to handle bubble size
25924 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
25925 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { translate: function() {
25926  
25927 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var i,
25928 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { data = this.data,
25929 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point,
25930 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { radius,
25931 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { radii = this.radii;
25932  
25933 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Run the parent method
25934 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesTypes.scatter.prototype.translate.call(this);
25935  
25936 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Set the shape type and arguments to be picked up in drawPoints
25937 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { i = data.length;
25938  
25939 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { while (i--) {
25940 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point = data[i];
25941 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { radius = radii ? radii[i] : 0; // #1737
25942  
25943 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (isNumber(radius) && radius >= this.minPxSize / 2) {
25944 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Shape arguments
25945 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point.marker = H.extend(point.marker, {
25946 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { radius: radius,
25947 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { width: 2 * radius,
25948 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { height: 2 * radius
25949 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
25950  
25951 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Alignment box for the data label
25952 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point.dlBox = {
25953 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x: point.plotX - radius,
25954 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { y: point.plotY - radius,
25955 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { width: 2 * radius,
25956 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { height: 2 * radius
25957 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
25958 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { } else { // below zThreshold
25959 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point.shapeArgs = point.plotY = point.dlBox = undefined; // #1691
25960 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25961 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
25962 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
25963  
25964 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { alignDataLabel: seriesTypes.column.prototype.alignDataLabel,
25965 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { buildKDTree: noop,
25966 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { applyZones: noop
25967  
25968 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Point class
25969 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }, {
25970 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { haloPath: function(size) {
25971 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return Point.prototype.haloPath.call(
25972 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { this,
25973 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { size === 0 ? 0 : (this.marker ? this.marker.radius || 0 : 0) + size // #6067
25974 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { );
25975 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
25976 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { ttBelow: false
25977 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
25978  
25979 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
25980 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Add logic to pad each axis with the amount of pixels
25981 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * necessary to avoid the bubbles to overflow.
25982 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
25983 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Axis.prototype.beforePadding = function() {
25984 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var axis = this,
25985 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { axisLength = this.len,
25986 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { chart = this.chart,
25987 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pxMin = 0,
25988 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pxMax = axisLength,
25989 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { isXAxis = this.isXAxis,
25990 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { dataKey = isXAxis ? 'xData' : 'yData',
25991 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { min = this.min,
25992 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { extremes = {},
25993 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { smallestSize = Math.min(chart.plotWidth, chart.plotHeight),
25994 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zMin = Number.MAX_VALUE,
25995 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zMax = -Number.MAX_VALUE,
25996 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { range = this.max - min,
25997 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { transA = axisLength / range,
25998 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { activeSeries = [];
25999  
26000 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Handle padding on the second pass, or on redraw
26001 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { each(this.series, function(series) {
26002  
26003 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var seriesOptions = series.options,
26004 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zData;
26005  
26006 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (series.bubblePadding && (series.visible || !chart.options.chart.ignoreHiddenSeries)) {
26007  
26008 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Correction for #1673
26009 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { axis.allowZoomOutside = true;
26010  
26011 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Cache it
26012 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { activeSeries.push(series);
26013  
26014 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (isXAxis) { // because X axis is evaluated first
26015  
26016 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // For each series, translate the size extremes to pixel values
26017 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { each(['minSize', 'maxSize'], function(prop) {
26018 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var length = seriesOptions[prop],
26019 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { isPercent = /%$/.test(length);
26020  
26021 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { length = pInt(length);
26022 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { extremes[prop] = isPercent ?
26023 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { smallestSize * length / 100 :
26024 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { length;
26025  
26026 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
26027 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { series.minPxSize = extremes.minSize;
26028 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Prioritize min size if conflict to make sure bubbles are
26029 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // always visible. #5873
26030 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { series.maxPxSize = Math.max(extremes.maxSize, extremes.minSize);
26031  
26032 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Find the min and max Z
26033 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zData = series.zData;
26034 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (zData.length) { // #1735
26035 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zMin = pick(seriesOptions.zMin, Math.min(
26036 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zMin,
26037 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Math.max(
26038 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { arrayMin(zData),
26039 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesOptions.displayNegative === false ? seriesOptions.zThreshold : -Number.MAX_VALUE
26040 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { )
26041 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { ));
26042 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zMax = pick(seriesOptions.zMax, Math.max(zMax, arrayMax(zData)));
26043 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26044 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26045 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26046 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
26047  
26048 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { each(activeSeries, function(series) {
26049  
26050 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var data = series[dataKey],
26051 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { i = data.length,
26052 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { radius;
26053  
26054 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (isXAxis) {
26055 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { series.getRadii(zMin, zMax, series.minPxSize, series.maxPxSize);
26056 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26057  
26058 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (range > 0) {
26059 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { while (i--) {
26060 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (isNumber(data[i]) && axis.dataMin <= data[i] && data[i] <= axis.dataMax) {
26061 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { radius = series.radii[i];
26062 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pxMin = Math.min(((data[i] - min) * transA) - radius, pxMin);
26063 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pxMax = Math.max(((data[i] - min) * transA) + radius, pxMax);
26064 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26065 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26066 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26067 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
26068  
26069 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (activeSeries.length && range > 0 && !this.isLog) {
26070 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pxMax -= axisLength;
26071 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { transA *= (axisLength + pxMin - pxMax) / axisLength;
26072 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { each([
26073 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { ['min', 'userMin', pxMin],
26074 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { ['max', 'userMax', pxMax]
26075 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { ], function(keys) {
26076 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (pick(axis.options[keys[0]], axis[keys[1]]) === undefined) {
26077 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { axis[keys[0]] += keys[2] / transA;
26078 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26079 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
26080 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26081 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
26082  
26083 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /* ****************************************************************************
26084 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * End Bubble series code *
26085 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *****************************************************************************/
26086  
26087 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }(Highcharts));
26088 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { (function(H) {
26089 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
26090 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * (c) 2010-2017 Torstein Honsi
26091 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
26092 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * License: www.highcharts.com/license
26093 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
26094 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var merge = H.merge,
26095 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Point = H.Point,
26096 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesType = H.seriesType,
26097 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesTypes = H.seriesTypes;
26098  
26099 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // The mapbubble series type
26100 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (seriesTypes.bubble) {
26101  
26102 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesType('mapbubble', 'bubble', {
26103 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animationLimit: 500,
26104 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { tooltip: {
26105 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pointFormat: '{point.name}: {point.z}'
26106 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26107  
26108 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Prototype members
26109 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }, {
26110 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { xyFromShape: true,
26111 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { type: 'mapbubble',
26112 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pointArrayMap: ['z'], // If one single value is passed, it is interpreted as z
26113 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
26114 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Return the map area identified by the dataJoinBy option
26115 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
26116 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { getMapData: seriesTypes.map.prototype.getMapData,
26117 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { getBox: seriesTypes.map.prototype.getBox,
26118 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { setData: seriesTypes.map.prototype.setData
26119  
26120 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Point class
26121 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }, {
26122 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { applyOptions: function(options, x) {
26123 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var point;
26124 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (options && options.lat !== undefined && options.lon !== undefined) {
26125 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point = Point.prototype.applyOptions.call(
26126 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { this,
26127 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { merge(options, this.series.chart.fromLatLonToPoint(options)),
26128 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x
26129 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { );
26130 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { } else {
26131 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point = seriesTypes.map.prototype.pointClass.prototype.applyOptions.call(this, options, x);
26132 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26133 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return point;
26134 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
26135 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { ttBelow: false
26136 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
26137 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26138  
26139 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }(Highcharts));
26140 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { (function(H) {
26141 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
26142 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * (c) 2010-2017 Torstein Honsi
26143 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
26144 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * License: www.highcharts.com/license
26145 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
26146 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var colorPointMixin = H.colorPointMixin,
26147 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { colorSeriesMixin = H.colorSeriesMixin,
26148 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { each = H.each,
26149 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { LegendSymbolMixin = H.LegendSymbolMixin,
26150 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { merge = H.merge,
26151 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { noop = H.noop,
26152 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pick = H.pick,
26153 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Series = H.Series,
26154 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesType = H.seriesType,
26155 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesTypes = H.seriesTypes;
26156  
26157 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // The Heatmap series type
26158 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesType('heatmap', 'scatter', {
26159 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animation: false,
26160 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { borderWidth: 0,
26161  
26162 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { nullColor: '#f7f7f7',
26163  
26164 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { dataLabels: {
26165 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { formatter: function() { // #2945
26166 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return this.point.value;
26167 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
26168 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { inside: true,
26169 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { verticalAlign: 'middle',
26170 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { crop: false,
26171 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { overflow: false,
26172 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { padding: 0 // #3837
26173 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
26174 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { marker: null,
26175 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pointRange: null, // dynamically set to colsize by default
26176 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { tooltip: {
26177 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pointFormat: '{point.x}, {point.y}: {point.value}<br/>'
26178 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
26179 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { states: {
26180 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { normal: {
26181 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animation: true
26182 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
26183 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { hover: {
26184 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { halo: false, // #3406, halo is not required on heatmaps
26185 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { brightness: 0.2
26186 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26187 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26188 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }, merge(colorSeriesMixin, {
26189 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pointArrayMap: ['y', 'value'],
26190 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { hasPointSpecificOptions: true,
26191 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { supportsDrilldown: true,
26192 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { getExtremesFromAll: true,
26193 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { directTouch: true,
26194  
26195 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
26196 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Override the init method to add point ranges on both axes.
26197 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
26198 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { init: function() {
26199 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var options;
26200 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesTypes.scatter.prototype.init.apply(this, arguments);
26201  
26202 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { options = this.options;
26203 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { options.pointRange = pick(options.pointRange, options.colsize || 1); // #3758, prevent resetting in setData
26204 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { this.yAxis.axisPointRange = options.rowsize || 1; // general point range
26205 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
26206 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { translate: function() {
26207 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var series = this,
26208 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { options = series.options,
26209 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { xAxis = series.xAxis,
26210 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { yAxis = series.yAxis,
26211 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { between = function(x, a, b) {
26212 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return Math.min(Math.max(a, x), b);
26213 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
26214  
26215 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { series.generatePoints();
26216  
26217 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { each(series.points, function(point) {
26218 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var xPad = (options.colsize || 1) / 2,
26219 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { yPad = (options.rowsize || 1) / 2,
26220 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x1 = between(Math.round(xAxis.len - xAxis.translate(point.x - xPad, 0, 1, 0, 1)), -xAxis.len, 2 * xAxis.len),
26221 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x2 = between(Math.round(xAxis.len - xAxis.translate(point.x + xPad, 0, 1, 0, 1)), -xAxis.len, 2 * xAxis.len),
26222 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { y1 = between(Math.round(yAxis.translate(point.y - yPad, 0, 1, 0, 1)), -yAxis.len, 2 * yAxis.len),
26223 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { y2 = between(Math.round(yAxis.translate(point.y + yPad, 0, 1, 0, 1)), -yAxis.len, 2 * yAxis.len);
26224  
26225 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Set plotX and plotY for use in K-D-Tree and more
26226 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point.plotX = point.clientX = (x1 + x2) / 2;
26227 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point.plotY = (y1 + y2) / 2;
26228  
26229 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point.shapeType = 'rect';
26230 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point.shapeArgs = {
26231 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x: Math.min(x1, x2),
26232 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { y: Math.min(y1, y2),
26233 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { width: Math.abs(x2 - x1),
26234 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { height: Math.abs(y2 - y1)
26235 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
26236 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
26237  
26238 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { series.translateColors();
26239 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
26240 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { drawPoints: function() {
26241 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesTypes.column.prototype.drawPoints.call(this);
26242  
26243 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { each(this.points, function(point) {
26244  
26245 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point.graphic.attr(this.colorAttribs(point));
26246  
26247 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }, this);
26248 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
26249 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { animate: noop,
26250 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { getBox: noop,
26251 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { drawLegendSymbol: LegendSymbolMixin.drawRectangle,
26252 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { alignDataLabel: seriesTypes.column.prototype.alignDataLabel,
26253 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { getExtremes: function() {
26254 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Get the extremes from the value data
26255 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Series.prototype.getExtremes.call(this, this.valueData);
26256 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { this.valueMin = this.dataMin;
26257 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { this.valueMax = this.dataMax;
26258  
26259 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Get the extremes from the y data
26260 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Series.prototype.getExtremes.call(this);
26261 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26262  
26263 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }), colorPointMixin);
26264  
26265 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }(Highcharts));
26266 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { (function(H) {
26267 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
26268 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * (c) 2010-2017 Torstein Honsi
26269 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
26270 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * License: www.highcharts.com/license
26271 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
26272 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var Chart = H.Chart,
26273 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { each = H.each,
26274 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { extend = H.extend,
26275 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { format = H.format,
26276 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { merge = H.merge,
26277 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { win = H.win,
26278 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { wrap = H.wrap;
26279 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
26280 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Test for point in polygon. Polygon defined as array of [x,y] points.
26281 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
26282 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { function pointInPolygon(point, polygon) {
26283 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var i,
26284 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { j,
26285 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { rel1,
26286 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { rel2,
26287 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { c = false,
26288 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x = point.x,
26289 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { y = point.y;
26290  
26291 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { for (i = 0, j = polygon.length - 1; i < polygon.length; j = i++) {
26292 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { rel1 = polygon[i][1] > y;
26293 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { rel2 = polygon[j][1] > y;
26294 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (rel1 !== rel2 && (x < (polygon[j][0] - polygon[i][0]) * (y - polygon[i][1]) / (polygon[j][1] - polygon[i][1]) + polygon[i][0])) {
26295 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { c = !c;
26296 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26297 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26298  
26299 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return c;
26300 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26301  
26302 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
26303 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Highmaps only. Get point from latitude and longitude using specified
26304 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * transform definition.
26305 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
26306 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @function transformFromLatLon
26307 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @memberOf Chart.prototype
26308 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
26309 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @param {Object} latLon
26310 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * A latitude/longitude object.
26311 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @param {Number} latLon.lat
26312 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * The latitude.
26313 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @param {Number} latLon.lon
26314 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * The longitude.
26315 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @param {Object} transform
26316 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * The transform definition to use as explained in the {@link
26317 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * https://www.highcharts.com/docs/maps/latlon|documentation}.
26318 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
26319 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @return {Object}
26320 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * An object with `x` and `y` properties.
26321 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
26322 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @sample maps/series/latlon-transform/
26323 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Use specific transformation for lat/lon
26324 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
26325 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Chart.prototype.transformFromLatLon = function(latLon, transform) {
26326 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (win.proj4 === undefined) {
26327 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { H.error(21);
26328 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return {
26329 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x: 0,
26330 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { y: null
26331 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
26332 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26333  
26334 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var projected = win.proj4(transform.crs, [latLon.lon, latLon.lat]),
26335 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { cosAngle = transform.cosAngle || (transform.rotation && Math.cos(transform.rotation)),
26336 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { sinAngle = transform.sinAngle || (transform.rotation && Math.sin(transform.rotation)),
26337 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { rotated = transform.rotation ? [projected[0] * cosAngle + projected[1] * sinAngle, -projected[0] * sinAngle + projected[1] * cosAngle] : projected;
26338  
26339 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return {
26340 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x: ((rotated[0] - (transform.xoffset || 0)) * (transform.scale || 1) + (transform.xpan || 0)) * (transform.jsonres || 1) + (transform.jsonmarginX || 0),
26341 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { y: (((transform.yoffset || 0) - rotated[1]) * (transform.scale || 1) + (transform.ypan || 0)) * (transform.jsonres || 1) - (transform.jsonmarginY || 0)
26342 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
26343 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
26344  
26345 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
26346 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Highmaps only. Get latLon from point using specified transform definition.
26347 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * The method returns an object with the numeric properties `lat` and `lon`.
26348 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
26349 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @function transformToLatLon
26350 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @memberOf Chart.prototype
26351 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
26352 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @param {Point|Object} point
26353 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * A `Point` instance, or or any object containing the properties `x`
26354 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * and `y` with numeric values.
26355 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @param {Object} transform
26356 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * The transform definition to use as explained in the {@link
26357 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * https://www.highcharts.com/docs/maps/latlon|documentation}.
26358 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
26359 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @return {Object}
26360 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * An object with `lat` and `lon` properties.
26361 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
26362 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @sample maps/series/latlon-transform/
26363 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Use specific transformation for lat/lon
26364 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
26365 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
26366 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Chart.prototype.transformToLatLon = function(point, transform) {
26367 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (win.proj4 === undefined) {
26368 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { H.error(21);
26369 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return;
26370 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26371  
26372 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var normalized = {
26373 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x: ((point.x - (transform.jsonmarginX || 0)) / (transform.jsonres || 1) - (transform.xpan || 0)) / (transform.scale || 1) + (transform.xoffset || 0),
26374 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { y: ((-point.y - (transform.jsonmarginY || 0)) / (transform.jsonres || 1) + (transform.ypan || 0)) / (transform.scale || 1) + (transform.yoffset || 0)
26375 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
26376 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { cosAngle = transform.cosAngle || (transform.rotation && Math.cos(transform.rotation)),
26377 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { sinAngle = transform.sinAngle || (transform.rotation && Math.sin(transform.rotation)),
26378 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Note: Inverted sinAngle to reverse rotation direction
26379 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { projected = win.proj4(transform.crs, 'WGS84', transform.rotation ? {
26380 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x: normalized.x * cosAngle + normalized.y * -sinAngle,
26381 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { y: normalized.x * sinAngle + normalized.y * cosAngle
26382 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { } : normalized);
26383  
26384 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return {
26385 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { lat: projected.y,
26386 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { lon: projected.x
26387 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
26388 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
26389  
26390 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
26391 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Highmaps only. Calculate latitude/longitude values for a point. Returns an
26392 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * object with the numeric properties `lat` and `lon`.
26393 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
26394 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @function fromPointToLatLon
26395 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @memberOf Chart.prototype
26396 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
26397 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @param {Point|Object} point
26398 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * A `Point` instance or anything containing `x` and `y` properties
26399 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * with numeric values
26400 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @return {Object}
26401 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * An object with `lat` and `lon` properties.
26402 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
26403 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @sample maps/demo/latlon-advanced/
26404 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Advanced lat/lon demo
26405 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
26406 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Chart.prototype.fromPointToLatLon = function(point) {
26407 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var transforms = this.mapTransforms,
26408 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { transform;
26409  
26410 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (!transforms) {
26411 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { H.error(22);
26412 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return;
26413 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26414  
26415 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { for (transform in transforms) {
26416 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (transforms.hasOwnProperty(transform) && transforms[transform].hitZone &&
26417 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pointInPolygon({
26418 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x: point.x,
26419 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { y: -point.y
26420 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }, transforms[transform].hitZone.coordinates[0])) {
26421 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return this.transformToLatLon(point, transforms[transform]);
26422 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26423 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26424  
26425 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return this.transformToLatLon(point, transforms['default']); // eslint-disable-line dot-notation
26426 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
26427  
26428 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
26429 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Highmaps only. Get chart coordinates from latitude/longitude. Returns an
26430 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * object with x and y values corresponding to the `xAxis` and `yAxis`.
26431 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
26432 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @function fromLatLonToPoint
26433 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @memberOf Chart.prototype
26434 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
26435 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @param {Object} latLon
26436 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Coordinates.
26437 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @param {Number} latLon.lat
26438 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * The latitude.
26439 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @param {Number} latLon.lon
26440 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * The longitude.
26441 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
26442 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @sample maps/series/latlon-to-point/
26443 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Find a point from lat/lon
26444 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
26445 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @return {Object}
26446 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * X and Y coordinates in terms of chart axis values.
26447 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
26448 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Chart.prototype.fromLatLonToPoint = function(latLon) {
26449 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var transforms = this.mapTransforms,
26450 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { transform,
26451 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { coords;
26452  
26453 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (!transforms) {
26454 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { H.error(22);
26455 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return {
26456 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x: 0,
26457 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { y: null
26458 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
26459 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26460  
26461 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { for (transform in transforms) {
26462 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (transforms.hasOwnProperty(transform) && transforms[transform].hitZone) {
26463 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { coords = this.transformFromLatLon(latLon, transforms[transform]);
26464 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (pointInPolygon({
26465 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x: coords.x,
26466 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { y: -coords.y
26467 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }, transforms[transform].hitZone.coordinates[0])) {
26468 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return coords;
26469 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26470 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26471 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26472  
26473 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return this.transformFromLatLon(latLon, transforms['default']); // eslint-disable-line dot-notation
26474 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
26475  
26476 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
26477 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Highmaps only. Restructure a GeoJSON object in preparation to be read
26478 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * directly by the {@link
26479 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * https://api.highcharts.com/highmaps/plotOptions.series.mapData|
26480 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * series.mapData} option. The GeoJSON will be broken down to fit a specific
26481 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Highcharts type, either `map`, `mapline` or `mappoint`. Meta data in
26482 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * GeoJSON's properties object will be copied directly over to
26483 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * {@link Point.properties} in Highmaps.
26484 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
26485 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @function #geojson
26486 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @memberOf Highcharts
26487 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
26488 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @param {Object} geojson
26489 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * The GeoJSON structure to parse, represented as a JavaScript object
26490 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * rather than a JSON string.
26491 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @param {String} [hType=map]
26492 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * The Highmaps series type to prepare for. Setting "map" will return
26493 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * GeoJSON polygons and multipolygons. Setting "mapline" will return
26494 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * GeoJSON linestrings and multilinestrings. Setting "mappoint" will
26495 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * return GeoJSON points and multipoints.
26496 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
26497 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @return {Object}
26498 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * An object ready for the `mapData` option.
26499 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
26500 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @sample samples/maps/demo/geojson/
26501 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Simple areas
26502 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @sample maps/demo/geojson-multiple-types/
26503 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Multiple types
26504 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
26505 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
26506 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { H.geojson = function(geojson, hType, series) {
26507 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var mapData = [],
26508 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { path = [],
26509 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { polygonToPath = function(polygon) {
26510 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var i,
26511 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { len = polygon.length;
26512 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { path.push('M');
26513 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { for (i = 0; i < len; i++) {
26514 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (i === 1) {
26515 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { path.push('L');
26516 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26517 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { path.push(polygon[i][0], -polygon[i][1]);
26518 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26519 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
26520  
26521 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { hType = hType || 'map';
26522  
26523 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { each(geojson.features, function(feature) {
26524  
26525 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var geometry = feature.geometry,
26526 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { type = geometry.type,
26527 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { coordinates = geometry.coordinates,
26528 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { properties = feature.properties,
26529 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point;
26530  
26531 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { path = [];
26532  
26533 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (hType === 'map' || hType === 'mapbubble') {
26534 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (type === 'Polygon') {
26535 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { each(coordinates, polygonToPath);
26536 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { path.push('Z');
26537  
26538 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { } else if (type === 'MultiPolygon') {
26539 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { each(coordinates, function(items) {
26540 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { each(items, polygonToPath);
26541 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
26542 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { path.push('Z');
26543 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26544  
26545 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (path.length) {
26546 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point = {
26547 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { path: path
26548 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
26549 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26550  
26551 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { } else if (hType === 'mapline') {
26552 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (type === 'LineString') {
26553 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { polygonToPath(coordinates);
26554 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { } else if (type === 'MultiLineString') {
26555 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { each(coordinates, polygonToPath);
26556 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26557  
26558 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (path.length) {
26559 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point = {
26560 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { path: path
26561 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
26562 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26563  
26564 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { } else if (hType === 'mappoint') {
26565 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (type === 'Point') {
26566 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { point = {
26567 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x: coordinates[0],
26568 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { y: -coordinates[1]
26569 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
26570 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26571 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26572 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (point) {
26573 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { mapData.push(extend(point, {
26574 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { name: properties.name || properties.NAME,
26575  
26576 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
26577 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * In Highmaps, when data is loaded from GeoJSON, the GeoJSON
26578 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * item's properies are copied over here.
26579 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
26580 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @name #properties
26581 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @memberOf Point
26582 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @type {Object}
26583 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
26584 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { properties: properties
26585 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }));
26586 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26587  
26588 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
26589  
26590 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Create a credits text that includes map source, to be picked up in Chart.addCredits
26591 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (series && geojson.copyrightShort) {
26592 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { series.chart.mapCredits = format(series.chart.options.credits.mapText, {
26593 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { geojson: geojson
26594 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
26595 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { series.chart.mapCreditsFull = format(series.chart.options.credits.mapTextFull, {
26596 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { geojson: geojson
26597 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
26598 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26599  
26600 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return mapData;
26601 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
26602  
26603 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
26604 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Override addCredits to include map source by default
26605 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
26606 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { wrap(Chart.prototype, 'addCredits', function(proceed, credits) {
26607  
26608 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { credits = merge(true, this.options.credits, credits);
26609  
26610 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Disable credits link if map credits enabled. This to allow for in-text anchors.
26611 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (this.mapCredits) {
26612 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { credits.href = null;
26613 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26614  
26615 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { proceed.call(this, credits);
26616  
26617 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Add full map credits to hover
26618 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (this.credits && this.mapCreditsFull) {
26619 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { this.credits.attr({
26620 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { title: this.mapCreditsFull
26621 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
26622 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26623 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
26624  
26625 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }(Highcharts));
26626 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { (function(H) {
26627 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
26628 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * (c) 2010-2017 Torstein Honsi
26629 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
26630 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * License: www.highcharts.com/license
26631 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
26632 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var Chart = H.Chart,
26633 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { defaultOptions = H.defaultOptions,
26634 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { each = H.each,
26635 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { extend = H.extend,
26636 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { merge = H.merge,
26637 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { pick = H.pick,
26638 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { Renderer = H.Renderer,
26639 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { SVGRenderer = H.SVGRenderer,
26640 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { VMLRenderer = H.VMLRenderer;
26641  
26642  
26643 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Add language
26644 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { extend(defaultOptions.lang, {
26645 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zoomIn: 'Zoom in',
26646 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zoomOut: 'Zoom out'
26647 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
26648  
26649  
26650 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Set the default map navigation options
26651 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { defaultOptions.mapNavigation = {
26652 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { buttonOptions: {
26653 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { alignTo: 'plotBox',
26654 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { align: 'left',
26655 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { verticalAlign: 'top',
26656 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x: 0,
26657 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { width: 18,
26658 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { height: 18,
26659 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { padding: 5,
26660  
26661 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { style: {
26662 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { fontSize: '15px',
26663 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { fontWeight: 'bold'
26664 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
26665 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { theme: {
26666 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { 'stroke-width': 1,
26667 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { 'text-align': 'center'
26668 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26669  
26670 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
26671 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { buttons: {
26672 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zoomIn: {
26673 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { onclick: function() {
26674 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { this.mapZoom(0.5);
26675 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
26676 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { text: '+',
26677 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { y: 0
26678 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
26679 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { zoomOut: {
26680 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { onclick: function() {
26681 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { this.mapZoom(2);
26682 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
26683 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { text: '-',
26684 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { y: 28
26685 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26686 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
26687 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { mouseWheelSensitivity: 1.1
26688 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // enabled: false,
26689 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // enableButtons: null, // inherit from enabled
26690 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // enableTouchZoom: null, // inherit from enabled
26691 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // enableDoubleClickZoom: null, // inherit from enabled
26692 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // enableDoubleClickZoomTo: false
26693 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // enableMouseWheelZoom: null, // inherit from enabled
26694 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
26695  
26696 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
26697 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Utility for reading SVG paths directly.
26698 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
26699 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { H.splitPath = function(path) {
26700 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var i;
26701  
26702 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Move letters apart
26703 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { path = path.replace(/([A-Za-z])/g, ' $1 ');
26704 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Trim
26705 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { path = path.replace(/^\s*/, '').replace(/\s*$/, '');
26706  
26707 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Split on spaces and commas
26708 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { path = path.split(/[ ,]+/); // Extra comma to escape gulp.scripts task
26709  
26710 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Parse numbers
26711 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { for (i = 0; i < path.length; i++) {
26712 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (!/[a-zA-Z]/.test(path[i])) {
26713 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { path[i] = parseFloat(path[i]);
26714 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26715 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26716 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return path;
26717 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
26718  
26719 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // A placeholder for map definitions
26720 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { H.maps = {};
26721  
26722  
26723  
26724  
26725  
26726 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Create symbols for the zoom buttons
26727 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { function selectiveRoundedRect(x, y, w, h, rTopLeft, rTopRight, rBottomRight, rBottomLeft) {
26728 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return [
26729 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { 'M', x + rTopLeft, y,
26730 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // top side
26731 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { 'L', x + w - rTopRight, y,
26732 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // top right corner
26733 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { 'C', x + w - rTopRight / 2,
26734 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { y, x + w,
26735 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { y + rTopRight / 2, x + w, y + rTopRight,
26736 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // right side
26737 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { 'L', x + w, y + h - rBottomRight,
26738 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // bottom right corner
26739 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { 'C', x + w, y + h - rBottomRight / 2,
26740 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x + w - rBottomRight / 2, y + h,
26741 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x + w - rBottomRight, y + h,
26742 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // bottom side
26743 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { 'L', x + rBottomLeft, y + h,
26744 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // bottom left corner
26745 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { 'C', x + rBottomLeft / 2, y + h,
26746 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x, y + h - rBottomLeft / 2,
26747 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x, y + h - rBottomLeft,
26748 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // left side
26749 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { 'L', x, y + rTopLeft,
26750 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // top left corner
26751 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { 'C', x, y + rTopLeft / 2,
26752 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x + rTopLeft / 2, y,
26753 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { x + rTopLeft, y,
26754 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { 'Z'
26755 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { ];
26756 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26757 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { SVGRenderer.prototype.symbols.topbutton = function(x, y, w, h, attr) {
26758 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return selectiveRoundedRect(x - 1, y - 1, w, h, attr.r, attr.r, 0, 0);
26759 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
26760 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { SVGRenderer.prototype.symbols.bottombutton = function(x, y, w, h, attr) {
26761 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return selectiveRoundedRect(x - 1, y - 1, w, h, 0, 0, attr.r, attr.r);
26762 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
26763 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // The symbol callbacks are generated on the SVGRenderer object in all browsers. Even
26764 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // VML browsers need this in order to generate shapes in export. Now share
26765 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // them with the VMLRenderer.
26766 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { if (Renderer === VMLRenderer) {
26767 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { each(['topbutton', 'bottombutton'], function(shape) {
26768 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { VMLRenderer.prototype.symbols[shape] = SVGRenderer.prototype.symbols[shape];
26769 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { });
26770 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26771  
26772  
26773 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /**
26774 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * The factory function for creating new map charts. Creates a new {@link
26775 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Chart|Chart} object with different default options than the basic Chart.
26776 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
26777 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @function #mapChart
26778 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @memberOf Highcharts
26779 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
26780 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @param {String|HTMLDOMElement} renderTo
26781 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * The DOM element to render to, or its id.
26782 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @param {Options} options
26783 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * The chart options structure as described in the {@link
26784 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * https://api.highcharts.com/highstock|options reference}.
26785 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @param {Function} callback
26786 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * A function to execute when the chart object is finished loading and
26787 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * rendering. In most cases the chart is built in one thread, but in
26788 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * Internet Explorer version 8 or less the chart is sometimes initiated
26789 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * before the document is ready, and in these cases the chart object
26790 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * will not be finished synchronously. As a consequence, code that
26791 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * relies on the newly built Chart object should always run in the
26792 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * callback. Defining a {@link https://api.highcharts.com/highstock/chart.events.load|
26793 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * chart.event.load} handler is equivalent.
26794 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { *
26795 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * @return {Chart}
26796 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { * The chart object.
26797 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { */
26798 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { H.Map = H.mapChart = function(a, b, c) {
26799  
26800 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { var hasRenderToArg = typeof a === 'string' || a.nodeName,
26801 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { options = arguments[hasRenderToArg ? 1 : 0],
26802 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { hiddenAxis = {
26803 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { endOnTick: false,
26804 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { visible: false,
26805 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { minPadding: 0,
26806 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { maxPadding: 0,
26807 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { startOnTick: false
26808 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
26809 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesOptions,
26810 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { defaultCreditsOptions = H.getOptions().credits;
26811  
26812 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { /* For visual testing
26813 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { hiddenAxis.gridLineWidth = 1;
26814 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { hiddenAxis.gridZIndex = 10;
26815 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { hiddenAxis.tickPositions = undefined;
26816 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // */
26817  
26818 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { // Don't merge the data
26819 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { seriesOptions = options.series;
26820 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { options.series = null;
26821  
26822 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { options = merge({
26823 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { chart: {
26824 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { panning: 'xy',
26825 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { type: 'map'
26826 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
26827 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { credits: {
26828 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { mapText: pick(defaultCreditsOptions.mapText, ' \u00a9 <a href="{geojson.copyrightUrl}">{geojson.copyrightShort}</a>'),
26829 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { mapTextFull: pick(defaultCreditsOptions.mapTextFull, '{geojson.copyright}')
26830 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
26831 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { tooltip: {
26832 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { followTouchMove: false
26833 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
26834 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { xAxis: hiddenAxis,
26835 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { yAxis: merge(hiddenAxis, {
26836 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { reversed: true
26837 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { })
26838 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { },
26839 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { options, // user's options
26840  
26841 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { { // forced options
26842 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { chart: {
26843 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { inverted: false,
26844 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { alignTicks: false
26845 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26846 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }
26847 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { );
26848  
26849 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { options.series = seriesOptions;
26850  
26851  
26852 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return hasRenderToArg ?
26853 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { new Chart(a, options, c) :
26854 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { new Chart(options, b);
26855 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { };
26856  
26857 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }(Highcharts));
26858 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { (function() {
26859  
26860  
26861 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { }());
26862 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) { return Highcharts
26863 < fullLength) {< len; i++) {<= 0.1) {< len; i++) {< len; i++) {< length; i++) {< length; i++) {<= shadowWidth; i++) {< childNodes.length && !inserted; i++) {< 0 && !defined(otherZIndex) && parentNode !== renderer.box)<') !== -1,<').replace(/<.*class="([^"]+)".*><.*style="([^"]+)".*><.*href="([^"]+)".*><(b|strong)><(i|em)><\/(b|strong|i|em|a)><\/span><(.|\n)*?>< 8,< Math.PI ? 0 : 1,< y + h - safeDistance) {< 0) {< y + h - safeDistance) {< x + w - safeDistance) { /< 0 && anchorX >< x + w - safeDistance) { /<= 3; i++) {< minRange) {< tickPositions[tickPositions.length - 1]) {< 4) {< tickAmount) {< tickAmount) {< pick(labelOptions.autoRotationLimit, 80) && labelOptions.autoRotation<= 90)) { /< bestScore) {< 2 &&< point - distance,< outerSize,< 0 ? alignedLeft : alignedLeft - h);< distance || point >< 0) {< bounds.min) {<= yAxis.len && /<= xAxis.len;< (threshold || 0);< points.length; i++) {< 0 ? 'left' : 'right';< 0 ? 'right' : 'left';< ret[kdComparer] ? nPoint1 : point);< ret[kdComparer]) {< ret[kdComparer] ?<= 0.5 && bottom >< 2,< minPointLength) {< animationLimit ? 'animate' : 'attr'](< 360;< length; j++) {< point.top + 2 || y >< connectorPadding) {< center[2]) {< 0) {< panMin,< 1 ? this : xAxis;< axisPos) {< ';< 1.01 && scaleY >< 1.01) {}));